Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
105
How to Set a cell Value
posted

I am usandoi WebDatagrid of NetAdvantage 2010.3
How to Set a Cell Value  ....    When I edit a cell value I want to update the value of another cell of the grid.
I'm doing it this way but it does not work
Function  WHDG_CellValueChanged function (grdDetalle, evntArgs)
{
     evntArgs._cell._row._index idxRow = var;
     var row = grdDetalle.get_rows (). get_row (idxRow);
     var Number = row.get_cell (2). get_value ();
     row.get_cell UnitPrice = var (4). get_value ();
     row.get_cell (5). get_value = Quantity * UnitPrice;