EasyUI之datagrid的複選框使用
阿新 • • 發佈:2019-01-23
EasyUI 新增複選框
複選框是什麼:放置一個複選框列到資料網格(DataGrid),使用者將可以選擇 選中/取消選中 網格行資料。
如何放置一個複選框:為了新增一個複選框列,只需新增一個列的 checkbox 屬性,並設定它為 true。程式碼如下所示:
<table id="tt" title="Checkbox Select" class="easyui-datagrid" style="width:550px;height:250px" url="data/datagrid_data.json" idField="itemid" pagination="true" iconCls="icon-save"> <thead> <tr> <th field="ck" checkbox="true"></th> //在這裡就是設定複選框的語句 <th field="itemid" width="80">Item ID</th> <th field="productid" width="80">Product ID</th> <th field="listprice" width="80" align="right">List Price</th> <th field="unitcost" width="80" align="right">Unit Cost</th> <th field="attr1" width="100">Attribute</th> <th field="status" width="60" align="center">Status</th> </tr> </thead> </table>
以上程式碼添加了一個帶有 checkbox 屬性的列,所以它將成為複選框列。如果 idField 屬性已設定,資料網格(DataGrid)的選擇集合將在不同的頁面保持。
datagrid有兩種屬性用來操作複選框:
名稱 | 型別 | 描述 | 預設值 |
---|---|---|---|
checkOnSelect | boolean | 如果設定為 true,當用戶點選某一行時,則會選中/取消選中複選框。如果設定為 false 時,只有當用戶點選了複選框時,才會選中/取消選中複選框。該屬性自版本 1.3 起可用。 | true |
selectOnCheck | boolean | 如果設定為 true,點選複選框將會選中該行。如果設定為 false,選中該行將不會選中複選框。 該屬性自版本 1.3 起可用。 | true |