使用easyUI 格式化datagrid列
生活随笔
收集整理的這篇文章主要介紹了
使用easyUI 格式化datagrid列
小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
@author YHC
以下示例格式化在easyui DataGrid 里的列數(shù)據(jù),和使用自定義列formatter ,如果價(jià)格小于20就將文本變?yōu)榧t色.
查看 Demo
格式化一個(gè)DataGrid 列,我們需要設(shè)置formatter 屬性它是一個(gè)函數(shù),這個(gè)格式化函數(shù)包含三個(gè)參數(shù):
- value: 當(dāng)前列對(duì)應(yīng)字段值.
- row: 當(dāng)前的row(行)記錄數(shù)據(jù).
- index: 當(dāng)前的行下標(biāo).
創(chuà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'屬性這個(gè)指明格式化函數(shù).
寫格式化函數(shù)
function formatPrice(val,row){ if (val < 20){ return '<span style="color:red;">('+val+')</span>'; } else { return val; } }下載 EasyUI示例代碼:
easyui-datagrid-demo.zip總結(jié)
以上是生活随笔為你收集整理的使用easyUI 格式化datagrid列的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: oracle undo
- 下一篇: 飞机加油的问题