Hi Martin, > As I know ULCTable objects don't load the whole data, which belongs to the > table. They load only the data, which can be seen and some more rows.
Yes. ULC uploads table data to the client in lazy mode. Only those rows that are visible are uploaded. > I would like to access all rows of a table and not only the loaded ones. > Example: If a table has 400 rows, but the first fifty are shown, I would > like to access the "last" row, which is not the 50th row but the 400th > row. Where would you like to access all rows? If it is on the server, then all rows are available on the server in the model. Lazy loading applies to loading of rows to the client. If it is in the client, then you will need an extension and you will have to make sure that the row you want is uploaded on the client before you can access it. Can you tell me what is your requirement? Thanks and regards, Janak ----------------------------------------- Janak Mulani email: [EMAIL PROTECTED] url: http://www.canoo.com Beyond AJAX - Java Rich Internet Applications http://www.canoo.com/ulc ----------------------------------------- > -----Original Message----- > From: [EMAIL PROTECTED] [mailto:ulc-developer- > [EMAIL PROTECTED] On Behalf Of Martin Moser > Sent: Monday, February 25, 2008 2:30 PM > To: [EMAIL PROTECTED] > Subject: [ULC-developer] ULCTable and lazy loading > > Hi all, > > As I know ULCTable objects don't load the whole data, which belongs to the > table. They load only the data, which can be seen and some more rows. > > I would like to access all rows of a table and not only the loaded ones. > Example: If a table has 400 rows, but the first fifty are shown, I would > like to access the "last" row, which is not the 50th row but the 400th > row. > > Is there any possibility to access all rows programmatically? Perhaps > sending events or calling specific methods or something like that? > > Thanks in advance! > > Best Regards, > Martin > > -- > Martin Moser > _______________________________________________ > ULC-developer mailing list > [email protected] > http://lists.canoo.com/mailman/listinfo/ulc-developer _______________________________________________ ULC-developer mailing list [email protected] http://lists.canoo.com/mailman/listinfo/ulc-developer
