0
  • 以下は、私の宣言的な dojox.grid.datagrid です。列の幅のサイズ変更を避けたい。UI では、列のサイズ変更を行うことができます。それを避ける方法

    <div class="claro" id="customer" name="dataGrid" onclick="setWidgetproperty(this.id,'xy','inner__customer')" ondblclick="editCustomGrid(this.id)" onmouseup="setDocStyle(this.id)" style="height: 200px; left: 178px; position: absolute; top: 176px; width: 950px;">
     <table class="claro" dojotype="dojox.grid.DataGrid" id="inner__customer" rowselector="10px" style="height: 180px; width: 400px;">
          <thead>
               <tr>
                    <th field="Column1" width="100px">
                         Column1
                    </th>
                    <th field="Column2" width="100px">
                         Column2
                    </th>
                    <th field="Column3" width="100px">
                         Column3
                    </th>
                    <th field="Column4" width="100px">
                         Column4
                    </th>
                    <th field="Column5" width="100px">
                         Column5
                    </th>
               </tr>
          </thead>
     </table>
     <input id="hidden__customer" name="dataGrid" style="display:none;" type="hidden">
    

4

1 に答える 1

1

この質問はすでに回答済みです。この投稿をご覧ください。

Dojo DataGrid - 列のサイズ変更を防止

各列の noresize 属性を利用できるようにするには、グリッドの宣言的な作成からプログラムによる作成に切り替える必要があります。

于 2013-04-03T09:30:24.067 に答える