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();
しかし、チェックボックスのスタイルが適切ではありません。チェックボックスの中に小さな四角があります。それを解決する方法。スクリーンショットは次のとおりです。