Please tell me what is wrong - it works fine in chrome but not in IE.
In Create : I have loadStateSuccess = loadState(this); and the function that loads data from db is below:
function loadState(grid) {
$.ajax({
url:url
data: params,
type: 'GET',
dataType: 'json',
success: function (json) {
if (json.data != null)
{
var colModel = json.data;
grid.loadState({ state: colModel });
}
},
error: function (xhr, status) {
},
complete: function (xhr, status) {
}
});
}