dojo工具包-增强的网格-我们可以有单元格边界吗?

23c0lvtd  于 2022-12-16  发布在  Dojo
关注(0)|答案(1)|浏览(144)

我可以有单元格边框(使用dojo / js代码,而不改变css属性- .dojoxGridCell)编程。

bttbmeg0

bttbmeg01#

如果您已经通过编程方式设置了网格,您可以使用“样式”选项来更改网格的布局。

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
                    }
                });

相关问题