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

Grid refresh missing in IE9 - Bug

5 Answers 78 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Matteo
Top achievements
Rank 1
Matteo asked on 28 Mar 2012, 04:15 PM
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

5 Answers, 1 is accepted

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

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
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?
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:

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();
Tags
Grid
Asked by
Matteo
Top achievements
Rank 1
Answers by
Matteo
Top achievements
Rank 1
Felipe Casanova
Top achievements
Rank 1
Sander
Top achievements
Rank 1
Share this question
or