how to make JQGrid Disabled ?
i tried JQGrid.Enabled := False; but not work
i tried to disable the containing panel, also not work
urgent
procedure DisableGrid(AGrid: TIWCGJQGrid);
var
js: string;
begin
js:= Format('$("#lui_%s").show();',[AGrid.JQHTMLName]);
CGAddJavascriptToAjaxResponse(js);
end;
procedure EnableGrid(AGrid: TIWCGJQGrid);
var
js: string;
begin
js:= Format('$("#lui_%s").show();',[IWCGJQGrid1.JQHTMLName]);
CGAddJavascriptToAjaxResponse(js);
end;