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

Paging UI is look same at all time

1 Answer 49 Views
Grid
This is a migrated thread and some comments may be shown as answers.
sai
Top achievements
Rank 1
sai asked on 25 Jan 2021, 09:50 AM

Hi team,

 

I am new to kendo grid.We are using Kendo jquery for our application.We face a problem in paging of the Grid.

Normal paging design is in attachment  file name "1".But at some time grid paging changed to Attachment "2"(it is the some grid in file "1" after successful insert of record).When we press f12 or if we move the window.it set back to older paging design.This is happening in different scenario all pages in my application.Can any one help on this please.

If you see file name "1.png",Paging is normal but same grid after insert paging,will look like in file name "2.png".If we move the browser screen or press f12.i will back to normal paging design.

We tried to resize the window but even after resizing issue remain same.Please help us on this

1 Answer, 1 is accepted

Sort by
0
Georgi Denchev
Telerik team
answered on 26 Jan 2021, 02:09 PM

Hi Sai,

Thank you for the provided screenshots.

You could try calling the resize method in the DataBound event of the grid. DataBound is triggered any time an item is created/update/deleted.

$("#grid").kendoGrid({
    dataBound: function() {
        this.resize();
    }
});

Unfortunately I cannot determine what the cause of the issue might be without seeing some code first. The grid pager demo seems to be functioning properly when an item is added. Could you please provide a small dojo sample where this problem is replicated so I can examine it locally?

I am looking forward to your reply.

Best Regards,
Georgi Denchev
Progress Telerik

Virtual Classroom, the free self-paced technical training that gets you up to speed with Telerik and Kendo UI products quickly just got a fresh new look + new and improved content including a brand new Blazor course! Check it out at https://learn.telerik.com/.

Tags
Grid
Asked by
sai
Top achievements
Rank 1
Answers by
Georgi Denchev
Telerik team
Share this question
or