Re: Uncaught TypeError: Cannot convert [object Object] to IBead

2021-08-12 Thread Greg Dove
I have also seen this in the past, where a bead did not implement IBead. A check was added to verify that in the addBead method but the error alone is not particularly helpful because of stringification. It could be that you are encountering a bead that was not updated to explicitly implement

Re: Data Paging with Jewel Table

2021-08-12 Thread Roman Isitua
Thanks will go through and revert if I have further questions. On Thu, Aug 12, 2021 at 2:44 PM Maria Jose Esteve wrote: > Hello Roman, > > In my case I have also needed tables with many records. Look at previous > posts in the list because I remember that there are several threads. > >

RE: Uncaught TypeError: Cannot convert [object Object] to IBead

2021-08-12 Thread Yishay Weiss
Oh, I see you have resolved it, thanks for sharing. From: Yishay Weiss Sent: Thursday, August 12, 2021 6:11 PM To: users@royale.apache.org Subject: RE: Uncaught TypeError: Cannot convert [object Object] to IBead I have encountered

RE: Uncaught TypeError: Cannot convert [object Object] to IBead

2021-08-12 Thread Yishay Weiss
I have encountered similar issues in the past. I think the runtime requirement that all beads actually implement IBead was added a bit late so there may be code that fails in runtime. I would put a breakpoint in your browser and inspect beads to see if one of them is not an IBead. From:

RE: Data Paging with Jewel Table

2021-08-12 Thread Maria Jose Esteve
Hello Roman, In my case I have also needed tables with many records. Look at previous posts in the list because I remember that there are several threads. (VirtualDataGrid, VirtualList, List from local pagination with custom control NavPaginator exist example in my repo [1],…) [1]

Data Paging with Jewel Table

2021-08-12 Thread Roman Isitua
Hi Everyone, I intend to fetch data from a table with a huge number of records. How can I implement data pagination in a jewel table? Also do I need to write some extra code for the remote object ? I am still learning how to develop with apache royale. I have no previous coding experience with