DHTMLxGrid

How do I update the data in an existing row? Is there is a flexibility to update the entire row or selective cells within the row. How can I do selective cell/entire row updates.

Thanks a bunch

regards

-Sushil

You can manipulate by cell value only through js api
    grid.cells(i,j).setValue(new_one);

In case of row updating, grid has functionality which allows to fetch XML stream, and update existing row(s) in grid with new data.
    grid.updateFromXML(url);
Please check
    samples/pro_refresh.html