欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

jtable列中自定義button示例代碼

 更新時間:2013年11月21日 15:23:38   作者:  
本文將為大家介紹下在jtable列中如何自定義button,下面有一個不錯的示例,感興趣的朋友可以參考下
復(fù)制代碼 代碼如下:

Information: {
title: 'Info',
width: '5%',
sorting: false,
edit: true,
create: true,
type:'textarea',
display: function (customerData) {
var $img = $('<img src="content/images/document_properties.png" title="View and edit information" />');
$img.click(function () {
$('#CustomersTableContainer').jtable('openChildTable',
$img.closest('tr'),
{
title: customerData.record.Name + ' - Information',
actions: {
listAction: 'ajax/customer_info_actions.php?action=list&searchterm=' + customerData.record.CustomerNumber,
},
fields: {
CustomerNumber: {
title: 'Number',
key: true,
create: false,
edit: false,
list: false
},
Information: {
title:'information',
create: false,
edit: true,
list: true,
type:'textarea'
},

}
}, function (data) { //opened handler
data.childTable.jtable('load');
});
});
return $img;
}
},
'''''

相關(guān)文章

最新評論