How to CURD using datatables in j2ee project?

How to CURD using datatables in j2ee project?

ssy341ssy341 Posts: 15Questions: 0Answers: 0
edited March 2012 in DataTables 1.8
I'm writing a project, which use the datatables, but do not know how to check out the data CURD

Replies

  • ssy341ssy341 Posts: 15Questions: 0Answers: 0
    my code:
    *.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]
This discussion has been closed.