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 に答える