Hello,
I'm using Kendo UI to create a SPA business application, which works perfect, except for 1 thing concerning the kendo Grid.
Since the last version, i noticed the pager popup is being appended to the body instead of the container element in which a view is shown.
Normally this wouldn't be so much of a problem, except that detaching a view with a grid doesn't detach the pager popup.
So when switching back and forth between different views, pager popups keep getting appended to the body.
I attached 2 files.
1 shows 4 divs with the pager popup, the result after switching views 4 times.
the other one shows the grid itself.
The page options are being set through creating the grid.
I hope this is a bug and can be fixed.
Thanks in advance.
I'm using Kendo UI to create a SPA business application, which works perfect, except for 1 thing concerning the kendo Grid.
Since the last version, i noticed the pager popup is being appended to the body instead of the container element in which a view is shown.
Normally this wouldn't be so much of a problem, except that detaching a view with a grid doesn't detach the pager popup.
So when switching back and forth between different views, pager popups keep getting appended to the body.
I attached 2 files.
1 shows 4 divs with the pager popup, the result after switching views 4 times.
the other one shows the grid itself.
The page options are being set through creating the grid.
$(
'#business-grid'
).kendoGrid({
dataSource: that._businessDatasource,
autoBind:
false
,
sortable:
true
,
selectable:
"row"
,
navigatable:
true
,
pageable: {
refresh:
true
,
pageSizes: [5, 10, 15, 20],
messages: {
display:
"{0} - {1} van {2} bedrijven"
,
itemsPerPage:
"bedrijven per pagina"
}
}
}
Thanks in advance.