Updating cell value of a dynamic table
Hi,
The data for my ActiveWidget table comes from a URL as shown below
I now want to update the value of a particular cell in the table and later save it back to the server.
I found some links on this forum for directly manipulating the cell value, but that's only applicable to static data.
How can I update value of a particular cell when the table is formed from dynamic data?
How do I send this info back to the server to be able to save it?
The data for my ActiveWidget table comes from a URL as shown below
table.setURL("http://server:port/abc/xyz.do");
table.request();
I now want to update the value of a particular cell in the table and later save it back to the server.
I found some links on this forum for directly manipulating the cell value, but that's only applicable to static data.
myData[1][1] = "some text";
obj.getRowTemplate(1).getItemTemplate(1).refresh();
How can I update value of a particular cell when the table is formed from dynamic data?
How do I send this info back to the server to be able to save it?
Ram
November 11,