日期:2014-05-16 浏览次数:20365 次
$(function () {
var qParams = { mode:'Qry', id: $("#txtid").val(), name: $("#txtname").val() }; //取得查詢參數
var oldRowIndex;
var opt = $('#grid');
opt.datagrid({
width: "auto", //自動寬度
height: 320, //固定高度
nowrap: false, //不截斷內文
striped: true, //列背景切換
fitColumns: true, //自動適應欄寬
singleSelect: true, //單選列
queryParams: qParams, //參數
url: 'CRUDHandler.ashx', //資料處理頁
idField: 'id', //主索引
frozenColumns: [[{ field: 'ck', checkbox: true}]], //顯示核取方塊
pageList: [10, 15, 20], //每頁顯示筆數清單
pagination: true, //是否啟用分頁
rownumbers: true, //是否顯示列數
toolbar: [{
id: 'btnAdd',
text: '新增',
iconCls: 'icon-add',
handler: function () {
insertRow($(this));
}
}],
onClickRow: function (rowIndex) {