This question is locked. New answers and comments are not allowed.
Hi
I develop an application that uses flipview and repeater inside the flipView. So, my model contains a text field (it is showed inside the flipview) and a list (it is showed inside the repeater)
When I assign a rad pagination control to the flipview, the application crashes with 'Out of stack space' error. it happens due to the list in my model. If I remove
the list from model, it works well.
The issue can be easily reproduced. Source code below has been taken from Rad Pagination control demo. I just added lines ##4 and 12.
Just update \Telerik\UI for Windows 8.1 HTML Q1 2014\Demos\examples\Pagination\FirstLook\default.js file with changes above and run the app - it will crash
Thanks!
I develop an application that uses flipview and repeater inside the flipView. So, my model contains a text field (it is showed inside the flipview) and a list (it is showed inside the repeater)
When I assign a rad pagination control to the flipview, the application crashes with 'Out of stack space' error. it happens due to the list in my model. If I remove
the list from model, it works well.
The issue can be easily reproduced. Source code below has been taken from Rad Pagination control demo. I just added lines ##4 and 12.
01.var imageData = [],02. baseImageUrl = "/examples/Pagination/FirstLook/images/",03. pagination, template,04. nums = [{ name: 1 }, { name: 2 }, { name: 3 }, { name: 4 }];05. 06.//generate image URLs07.for (var i = 1; i <= 6; i++)08.{09. imageData.push({10. imageUrl: baseImageUrl + i + ".jpg",11. thumbnail: baseImageUrl + i + "s.jpg",12. arr: new WinJS.Binding.List(nums)13. });14.}Just update \Telerik\UI for Windows 8.1 HTML Q1 2014\Demos\examples\Pagination\FirstLook\default.js file with changes above and run the app - it will crash
Thanks!