jquery - jqGrid clientArray -


i trying use jqgrid clientarray submit multiple updates @ once. (i trying update multiple rows in 1 go).

        onselectrow: function(id){             if (id && id !== lastsel) {                 jquery('#fnlusetaxlistings').saverow(lastsel, true, 'clientarray');                 jquery('#fnlusetaxlistings').editrow(id, true, null, null);                 lastsel = id;             }         }, 

this works fine, have no idea how retrieve clientarray , send server? if can post example of sending clientarray server, helpful.

thanks, ashish

there no "clientarray", there 'data' parameter object local data. see this or this answer examples.


Comments

Popular posts from this blog

mod rewrite - Doing external redirect. .htaccess NS flag not working. How to achieve similar results? -

mysql - How to insert just year and month into date field? -