Pouya
Pouya

Reputation: 1918

what is clientArray and how to access to data clientArray

i see clientArray in this code

 if (id && id !== lastSel) {

                        grid.saveRow(lastSel, true, 'clientArray'); 

                        grid.jqGrid('restoreRow', lastSel);
                        grid.jqGrid('editRow', id, true, null, null, 'clientArray');
                        lastSel = id;
                        //}  
                    }

what is a clientArray and how to access data clientArray?

thanks for help me.

Upvotes: 0

Views: 2184

Answers (1)

Pouya
Pouya

Reputation: 1918

when write this code

grid.jqGrid('editRow', id, true, null, null, 'clientArray');

data not send to server and just sore data in grid

Upvotes: 1

Related Questions