我對extjs非常陌生。我想用extjs來設計數獨遊戲。直到現在我也做了以下內容:使用extjs設計數獨
Ext.onReady(function(){
var i = 0,
items = [],
childItems = [];
for (i = 0; i < 9; ++i) {
childItems.push({
xtype: 'container',
height: 50,
style: {borderColor:'#000000', borderStyle:'solid', borderWidth:'1px',width: '40px'}
});
}
for (i = 0; i < 9; ++i) {
items.push({
xtype: 'container',
height: 150,
layout: {
type: 'column'
},
style: {borderColor:'#000000', borderStyle:'solid', borderWidth:'1px',width: '143px'},
items: childItems
});
}
Ext.create('Ext.container.Container', {
layout: {
type: 'column'
},
width: 450,
renderTo: Ext.getBody(),
border: 1,
height: 450,
style: {borderColor:'#000000', borderStyle:'solid', borderWidth:'1px',marginLeft: 'auto',marginRight: 'auto', marginTop: '30px'},
items: items
});
});
我的問題是,由於邊界的,這些塊有一定的空間,甚至這類似於用簡單的HTML(div的設計,可能是因爲使用CSS )。請幫忙..
設計看起來不一樣jsfiddle。
編輯:我想盡可能避免使用CSS(javascript樣式也)。
你爲什麼不張貼的jsfiddle? –
「設計在jsfiddle中看起來不同」(我不知道爲什麼)。無論如何,這裏是鏈接http://jsfiddle.net/X6kQK/ –