Click here to Skip to main content
15,917,709 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
I have a nested repeater, ( something similar to facebook posts and comments) I am loading first 10 rows of the parent repeater along with its childrepeaters through codebehind. And then loading rest of the rows of the parent repeater using Jquery appent method, and a web method on scroll down. My question is how can i load parent repeater along with its child repeaters using jquery?
Is there any tutorial etc on lazy loading which uses nested repeater?
this is what i have been using ..
CLICK HERE[^]
Posted

you can try datatable: just google it ,maybe you need add some events to cells on demand
http://datatables.net/release-datatables/examples/advanced_init/dom_multiple_elements.html


http://datatables.net/examples/
 
Share this answer
 
v2
In your scenario, from UI perspective, this is a child table linked to each row of parent table.
If you wanna use ajax to pull data to front-end then render, i suggest you replace repeater with another UI control, then you will be familar with the structure,and add corresponding event to tds ot trs.
ps: the data should be in Json format:{ parent information {child information}}. then use js to render.
 
Share this answer
 
Comments
arbaaz jalil 22-Jul-13 4:39am    
Another UI control ? like what?

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900