Author Topic: How to edit cell from outside the function  (Read 2481 times)

Ganesh

  • Newbie
  • *
  • Posts: 3
    • View Profile
How to edit cell from outside the function
« on: April 15, 2014, 06:35:56 pm »
Hi,

I want to edit my cell from outside the function. That means in different function not with in the same function. For editing the cell within the function I used the following code.

data[1][1] = "gun";
$( "#performance_tab_main" ).pqGrid( "refreshCell", { rowIndx: 1, dataIndx: 'speed' } );

How can i edit the cell from outside/another function.