中文字幕一区二区人妻电影,亚洲av无码一区二区乱子伦as ,亚洲精品无码永久在线观看,亚洲成aⅴ人片久青草影院按摩,亚洲黑人巨大videos

jEasyUI 格式化列

以下實(shí)例格式化在 easyui DataGrid 里的列數(shù)據(jù),并使用自定義列的 formatter,如果價(jià)格小于 20 就將文本變?yōu)榧t色。

為了格式化一個(gè)數(shù)據(jù)網(wǎng)格(DataGrid)列,我們需要設(shè)置 formatter 屬性,它是一個(gè)函數(shù)。這個(gè)格式化函數(shù)包含三個(gè)參數(shù):

  • value:當(dāng)前列對應(yīng)字段值。
  • row:當(dāng)前的行記錄數(shù)據(jù)。
  • index:當(dāng)前的行下標(biāo)。

創(chuàng)建數(shù)據(jù)網(wǎng)格(DataGrid)

????<table id="tt" title="Formatting Columns" class="easyui-datagrid" style="width:550px;height:250px"
????????????url="data/datagrid_data.json"
????????????singleSelect="true" iconCls="icon-save">
????????<thead>
????????????<tr>
????????????????<th field="itemid" width="80">Item ID</th>
????????????????<th field="productid" width="80">Product ID</th>
????????????????<th field="listprice" width="80" align="right" formatter="formatPrice">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">Stauts</th>
????????????</tr>
????????</thead>
????</table>

請注意,'listprice' 字段有一個(gè) 'formatter' 屬性,用來指明格式化函數(shù)。

寫格式化函數(shù)

????function formatPrice(val,row){
????????if (val < 20){
????????????return '<span style="color:red;">('+val+')</span>';
????????} else {
????????????return val;
????????}
????}