This is a migrated thread and some comments may be shown as answers.

[Solved] Ignoring specific column from updating when using grid.dataBind()

0 Answers 20 Views
Grid
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
Ido
Top achievements
Rank 1
Ido asked on 15 Feb 2012, 11:45 AM
Hi,

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
Tags
Grid
Asked by
Ido
Top achievements
Rank 1
Share this question
or