This question is locked. New answers and comments are not allowed.
Hi,
I'm using the following JavaScript code to refresh a grid
Is there a way to tell the grid to ignore updating one of the columns?
Thanks
Ido
I'm using the following JavaScript code to refresh a grid
function refreshState() { var url = "http://localhost/wcfService/wcfService.svc/GetData; $.ajax({ url: url, cache: false, dataType: "json", success: function (data) { var $grid = $('#Grid').data('tGrid'); $grid.dataBind(data); } });}Is there a way to tell the grid to ignore updating one of the columns?
Thanks
Ido