jQuery EasyUI Data Grid - Formatting Columns

The following example formats the column data in easyui DataGrid, and uses the formatter of the custom column, and turns the text red if the price is less than 20.

In order to format a DataGrid column, we need to set the formatter property, which is a function. This formatting function takes three parameters:

  • value: The field value corresponding to the current column.
  • row: The current row record data.
  • index: The current row subscript.

Create a data grid (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>

Note that the 'listprice' field has a 'formatter' attribute that specifies the formatting function.

write format function

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

 

Guess you like

Origin blog.csdn.net/unbelievevc/article/details/130398343