复制代码 代码如下:
information: {
title: 'info',
width: '5%',
sorting: false,
edit: true,
create: true,
type:'textarea',
display: function (customerdata) {
var $img = $('');
$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;
}
},
'''''