zoukankan      html  css  js  c++  java
  • 从Silverlight到ExtJS再到BootStrap,DataTable(DataGrid)的样式格式化原理没变

    <table id="tableOrder" data-toolbar="tableBtnGroup" data-row-style="rowStyle">
    	<thead style="background-color: #f0f0f0;">
    		<tr>
    			<th data-field="orderName" data-width="20%" data-cell-style="cellStyle">订单名称</th>
    			<th data-field="orderNumber" data-width="20%" data-cell-style="cellStyle">订单号</th>
    			<th data-field="orderTypeDesc" data-width="10%">订单类型</th>
    			<th data-field="payStatusDesc" data-width="10%">支付状态</th>
    			<th data-field="businessStatusDesc" data-width="10%">订单状态</th>
    			<th data-field="creatorName" data-width="15%">创建用户</th>
    			<th data-field="createTime" data-width="15%">下单日期</th>
    			<th data-field="orderType" data-visible="false"></th>
    			<th data-field="businessStatus" data-visible="false"></th>
    			<th data-field="id" data-visible="false">ID</th>
    		</tr>
    	</thead>
    </table>
    

      

    function rowStyle(row, index) {
    	return {
    		css : {
    			"color" : "blue",
    			"cursor" : "pointer"
    		}
    	};
    }
    
    function cellStyle(value, row, index, field) {
    	return {
    		css : {
    			"color" : "blue",
    			"cursor" : "pointer"
    		}
    	};
    }
    

      

  • 相关阅读:
    重定向 重写
    php 安装 event 和 libevent 扩展
    curl 和 tcpdump
    yum 升级php版本
    shell 教程
    shell脚本 inotify + rsync 同步脚本
    nodesj中 中间件express-session的理解
    node.js中express-session配置项详解
    我对面向对象的理解
    BootstrapValidator
  • 原文地址:https://www.cnblogs.com/rgqancy/p/5910006.html
Copyright © 2011-2022 走看看