zoukankan      html  css  js  c++  java
  • JQuery EasyUI DataGrid根据条件设置表格行样式(背景色)

    1.javascript定义函数返回样式

    <script type="text/javascript">
        //根据条件设置表格行背景颜色
        function setRowBgColor(index, row) {
            if (row.ERROR_INFO != null && row.ERROR_INFO != "") {
                return 'background-color:yellow;color:black;';
            }
        }
    </script>

    2.在table的属性中设置rowStyler对应的function为之前定义的setRowBgColor

    <table id="gridFileImport" class="easyui-datagrid" style="780px;height:420px;" data-options="rownumbers:true,singleSelect:true,selectOnCheck:false,checkOnSelect:false,pagination:true,pageSize:20,url:'',method:'get',striped:true,rowStyler:setRowBgColor">

    PS:DataGrid自带的表格隔行变色属性设置striped:true

    3.效果图如下:

  • 相关阅读:
    Typecho
    iOS开发
    搭建自己的Git服务器
    Markdown
    微信使用篇
    bzoj2406 矩阵
    POI2010 Bridges
    上下界网络流总结
    TopCoder SRM 582 Div 1
    port命令记录
  • 原文地址:https://www.cnblogs.com/mora1988/p/5552075.html
Copyright © 2011-2022 走看看