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
Post a Comment