I am using the following code to update the value in a grid cell clientside:
var masterTable = $find("<%=dtInvoice.ClientID%>").get_masterTableView();
var amount = masterTable.getCellByColumnUniqueName(masterTable.get_dataItems()[row], "Apply")
if (amount)
{
amount.innerHTML = displayamt;
}
return false;
I have not figured out a way to pull the value on the serverside. I tried pulling using the dataitem but it always returns empty. What am i missing?