從Silverlight到ExtJS再到BootStrap,DataTable(DataGrid)的樣式格式化原理沒變

rgqancy發表於2016-09-26
<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"
		}
	};
}

  

相關文章