How to CURD using datatables in j2ee project?
How to CURD using datatables in j2ee project?
ssy341
Posts: 15Questions: 0Answers: 0
I'm writing a project, which use the datatables, but do not know how to check out the data CURD
This discussion has been closed.
Replies
*.js
[code]
$('#datetableTest').dataTable({
"bProcessing": true,
"sScrollX":"100%",
"bJQueryUI": true,
"sScrollY": 300,
"bDestroy":true,
"iDisplayLength":12,
"bSort": false,
"sScrollXInner": "100%",
"sPaginationType": "full_numbers",
"sAjaxSource":"PaymentType.action",
"aoColumns":[
{ "mDataProp": "typeCode"},
{ "mDataProp": "typeValue"},
{ "mDataProp": "note" },
{ "mDataProp": null},
{ "mDataProp": null}
]
});
[/code]
*.html
[code]
code
name
note
CURD
[/code]