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"
    		}
    	};
    }
    

      

  • 相关阅读:
    Linear Regression总结
    Logistic Regression总结
    LOG算子
    斑点检测
    从 SVM 到多核学习 MKL
    目标检测的图像特征提取之(二)LBP特征
    HOG:从理论到OpenCV实践
    web前端升级之路
    webpack入门
    VUE2.0实现购物车和地址选配功能学习第七节
  • 原文地址:https://www.cnblogs.com/rgqancy/p/5910006.html
Copyright © 2011-2022 走看看