When I edit a bunch of fields in a row, I click update and it sends the data to my php server. The php server sends back some json data and I want the same row to update.
For example:
I update a row and it has some fields in it like projectscore, adjustment and weight. The server saves the data and sends back the project total so it can be properly updated in the table. right now this is the json postback
{"id":"1","ptotal":75}
id is the id of the row (specified in the table, this is working), and ptotal is the column name of the column I need updated
How do I update the column in the table from the response from the server after an update or a create?
This is a server side php, client side kendo system (the table is a nested table in a hierarchy setup)
For example:
I update a row and it has some fields in it like projectscore, adjustment and weight. The server saves the data and sends back the project total so it can be properly updated in the table. right now this is the json postback
{"id":"1","ptotal":75}
id is the id of the row (specified in the table, this is working), and ptotal is the column name of the column I need updated
How do I update the column in the table from the response from the server after an update or a create?
This is a server side php, client side kendo system (the table is a nested table in a hierarchy setup)