Reputation: 77
Can I have cell borders (using dojo / js code without changing the css property - .dojoxGridCell) programmatically.
Upvotes: 0
Views: 153
Reputation: 1100
If you have setup your Grid programmaticaly you can use the "style" Option to change the layout of the grid for example.
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
}
});
Upvotes: 0