jtable列中自定义button示例代码
代码如下:
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;
}
},
'''''
上一篇: 表结构查询 Sql
推荐阅读
-
Asp.net Core中实现自定义身份认证的示例代码
-
C#中自定义控件如何实现TextBox禁止粘贴的示例代码
-
jtable列中自定义button示例代码
-
jtable列中自定义button示例代码_jquery
-
关于python中pandas.DataFrame对行与列求和及添加新行与列示例代码
-
如何在Javascript中创建自定义事件?(代码示例)
-
关于python中pandas.DataFrame对行与列求和及添加新行与列示例代码
-
jtable列中自定义button示例代码_jquery
-
如何在Javascript中创建自定义事件?(代码示例)
-
Asp.net Core中实现自定义身份认证的示例代码