0

我用于创建 dojo 增强型数据网格的 Javascript 代码是:

grid = new dojox.grid.EnhancedGrid({
                            store: store,
                            rowSelector: 'auto',
                            **plugins: {indirectSelection: {headerSelector:true, width:'auto', styles:"text-align: center;"}},**
                            structure: [
                                          {field: 'msname', width: 'auto', name: 'Milestone'},
                                          {field: 'description', width: 'auto', name: 'Description'},
                                          {field: 'msorder', width: 'auto', name: 'Milestone Order'},
                                          {field: 'eventtype', width: 'auto', name: 'Event Type'},
                                          {field: 'isngrp', width: 'auto', name: 'Is NGRP?'},
                                          {field: 'eventAttribute', width: 'auto', name: 'Event Attribute(s)'}
                                      ]
                        },"grid");
                        grid.startup();

但是复选框的样式不正确。复选框内有一个小方块。任何想法如何解决它。截图是:

增强的网格复选框样式

4

1 回答 1

0

我错过了将 enhancedgrid.css 包含在我的页面正文中。现在渲染得很好。

于 2012-08-16T13:13:24.990 回答