Read client data instead of server with ASPxGridView.GetSelectedFieldValues

lalkdealmox

New Member
I have the following code\[code\]objGrid.GetSelectedFieldValues("IsEnabled", function (values){ if (values[0]) { $('#btnEnable').hide(); $('#btnDisable').show(); } else { $('#btnEnable').show(); $('#btnDisable').hide(); }}\[/code\]This works fine but the grid performs a callback to the server for the data when the data is already in the client. How can I get the grid to read the client data instead?
 
Back
Top