Pass selected jquery jtable rows to constroller in spring mvc -


i using jquery jtable display grid. want pass selected rows grid spring mvc controller. want know if can pass selected rows controller.

following jquery jtable code

          j('#claimsinfotableid').jtable({          paging : true, //enable paging         pagesize : 10, //set page size (default: 10)            selecting: true, //enable selecting         multiselect: true, //allow multiple selecting         selectingcheckboxes: true,         actions : {                   listaction: '${baseurl}/claimtrackinghistorylistpaginationdatatablesajaxcall.html',           },           fields: {                   claimid : {                             title : 'claim id',                             width : '20%',                             key : true,                             list : true,                             edit : true,                             create : false                         },                 claimpool : {                             title : 'claim pool',                             width : '20%',                               list : true,                             edit : true,                             create : false                          },           }       });     j('#claimsinfotableid').jtable('load');   


Comments

Popular posts from this blog

user interface - how to replace an ongoing process of image capture from another process call over the same ImageLabel in python's GUI TKinter -

javascript - Using jquery append to add option values into a select element not working -

javascript - Restarting Supervisor and effect on FlaskSocketIO -