Hello,
grid does not refresh in IE9.
Can you please have a look at my (partial) sample code in attachment?
Notice that the code works fine (grid refreshes) with Chrome and FF.
The code that fails is in the method: onCallHandlerSuccess
I server side delete a row (with success), but client side I see no changes!
Thanks a lot
Matteo
grid does not refresh in IE9.
Can you please have a look at my (partial) sample code in attachment?
Notice that the code works fine (grid refreshes) with Chrome and FF.
The code that fails is in the method: onCallHandlerSuccess
I server side delete a row (with success), but client side I see no changes!
Thanks a lot
Matteo
5 Answers, 1 is accepted
0

Matteo
Top achievements
Rank 1
answered on 29 Mar 2012, 07:38 AM
Any help on this issue?
Thanks
Matteo
Thanks
Matteo
0

Felipe Casanova
Top achievements
Rank 1
answered on 31 Mar 2012, 12:29 PM
Hi Telerik
I also have this problem. I would really appreciate any work arounds on this please.
Thanks
Matt
I also have this problem. I would really appreciate any work arounds on this please.
Thanks
Matt
0

Sander
Top achievements
Rank 1
answered on 31 Mar 2012, 09:31 PM
I seem to be having the same problems in Chrome and Firefox.
Does someone have any idea?
Does someone have any idea?
0

Matteo
Top achievements
Rank 1
answered on 02 Apr 2012, 09:58 AM
Hi all,
if you had code similar to mine, try the following code. I simply added the Ajax call to method to retrieve data again:
Now I have the grid correctly refreshed with all browsers.
Hope it helps.
Matteo
if you had code similar to mine, try the following code. I simply added the Ajax call to method to retrieve data again:
function onCallHandlerSuccess(result)
{
dsResultMenu.read({
url: "/data/myUrl.php?nocache=" + (new Date()).getTime()
,dataType: "json"
,data : { id : <?
php
echo $menu->getID(); ?> }
});
$("#gridResultMenu").data("kendoGrid").refresh();
}
Now I have the grid correctly refreshed with all browsers.
Hope it helps.
Matteo
0

Sander
Top achievements
Rank 1
answered on 02 Apr 2012, 02:28 PM
I fixed it by executing the following command.
$("#grid").data("kendoGrid").dataSource.read();