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

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

Android soft keyboard reverts to default keyboard on orientation change -

Rendering JButton to get the JCheckBox behavior in a JTable by using images does not update my table -