我可以以编程方式设置单元格边框吗(使用dojo / js代码而不更改css属性-.dojoxGridCell)。
答案 0 :(得分:0)
如果以编程方式设置了网格,则可以使用“样式”选项来更改网格的布局。
YourGrid = new EnhancedGrid({
id: 'YourGridId',
store: YourStore,
style: "width:500pt;height:200pt;",
structure: layoutYourGridsName,
rowSelector: '20px',
keepSelection: false,
plugins: {
indirectSelection: IndirectSelectionSettings,
filter: Filtersettings,
pagination: PaginationSettings,
exporter: true
}
});