Questions tagged [nested-repeater]

Use this tag when the structure is like that one Repeater (Child) is placed inside another Repeater (Parent). Both Repeaters will bind from different Data Sources.

If you use Repeater in nested structure then you have to bind both Repeaters (Parent and Child) from different Data Sources (can be DataTable, List, Database etc).

The nested structure could be:

(-) Repeater -> Parent
 (-) Controls
 (+) Repeater -> Child

Note: Child Repeater will be bind in RowDataBound event of Parent Repeater with C#.

99 questions
1
vote
1 answer

Display hierarchal data from list of objects

I have a list of objects that I want to display in a particular way, and am having way more trouble than I was expecting. Essentially I need a setup as follows: Parent Level 2 (header) Child Level 3 items in a table This repeats until the end of…
eKoz
  • 83
  • 7
1
vote
1 answer

ASP.NET Nested Repeater Issues

I am currently working on a ASP.NET Web Forms project where I need to display some deserialized XML data using nested repeaters for a Job Postings page. The issues I am having is that the nested repeater is only showing the first item which is an…
user2635152
1
vote
1 answer

Repeater in Repeater Databinding (no postback)

For the solution, I cannot use any postback methods, because this is all working through ajax. The solution need to be implemented in the asp.net code. I have a List that contains a list of Links (List) and I need for all the links to…
Pierluc
  • 395
  • 3
  • 6
  • 13
1
vote
1 answer

3 level nested repeater

have a 3 level nested repeater which display menu header and menu items for each group as shown in second repeater have 4 check boxes to check some check boxes in third repater with javascript function as shown
Eng Mohamed Attian
  • 97
  • 1
  • 2
  • 10
1
vote
2 answers

How can I Implement N level nested Repeater control in asp.net?

I want to achieve n level data hierarchy in using repeater control in asp.net. Is there any solution to achieve that hierarchy ?
Jaimin Soni
  • 1,061
  • 1
  • 13
  • 29
1
vote
1 answer

How to fire ItemCommand argument child repeater in nested repeater control in c#.net

Here is my aspx page code for nested repeater.. <%#Eval("TopicName")%>
Surendra
  • 35
  • 1
  • 1
  • 9
1
vote
1 answer

Nested repeater on button click not working

I have an user control page i.e. template(.ascx) where in I have a repeater which gets loaded by executing a stored procedure. There is also a parent page which has its own repeater along with a button on each row and this repeater too gets loaded…
Nalini
  • 213
  • 1
  • 3
  • 12
1
vote
0 answers

Parent to Child repeater and setting up relations

I wonder if someone could assist please....I've been following various tutorials (on here and on the MSDN site) and I've ended up completely confusing myself! I've got a dataset which looks something like the following: id | descipt | letter 1 |…
SxChoc
  • 619
  • 3
  • 10
  • 26
1
vote
1 answer

Add List to Nested Repeater Control

I have a repeater control nested in a GridView. On GridView Updated I'm trying to DataBind the Repeater. I'm not getting any errors but the databind is not working. My setup is 2 tables with a many to many relationship. Employee and…
chuckles
  • 11
  • 2
1
vote
2 answers

How to get count of nested repeater items

I've a repeater on my page. And it's containing a nested repeater on it's item. It's structure is as below // Need some code…
Mayank Pathak
  • 3,621
  • 5
  • 39
  • 67
1
vote
1 answer

Imagebutton delete action in nested control

I have a nested repeater with a delete button in it. This button deletes a student from a group. but when I press the delete button it just goes through the nested repeater again and I get: Invalid postback or callback argument. Stack Trace:…
reaper_unique
  • 2,916
  • 3
  • 28
  • 48
1
vote
0 answers

How to put GridView into edit mode while nested in two Repeaters?

I have a Gridview inside a Repeater inside another Repeater. The declarative code looks like this: <%# DataBinder.Eval(Container.DataItem, "Name") %>
jethomas
  • 207
  • 4
  • 15
0
votes
1 answer

Find a repeater that is within another repeater

Ok so my issue is I have three repeaters. Within that repeater I have another repeater and a third one in the second. There is more in between but that's not relevant. Below the HTML is my VB code. My issue is that rptCrashPercentageAvg reutrns…
cjohnson2136
  • 1,571
  • 2
  • 13
  • 17
0
votes
1 answer

XML to nested repeater control ASP.net

I followed this simple tutorial and created a nested repeater. This tutorial is simple enough so i could easily create something like that. But I have different XML structure in my organisation which i can't change. My XML structure is repeated…
Laurence
  • 7,633
  • 21
  • 78
  • 129
0
votes
1 answer

Capturing button click event in nested user controls with repeaters

Following is my page & control hierarchy. Page UserControl 1 //Contents of UserControl 1 UserControl 2 //Contents of UserControl 2
//Repeater 2…
spraman
  • 3
  • 2