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
0
votes
1 answer

Check CheckBox inside inner Repeater from outer Repeater checked in Asp.Net

There are two CheckBoxes one is in outer Repeater and other is inside inner Repeater. I would like to automatically check CheckBox of inner Repeater when checked the outer Repeater's CheckBox. HTML Markup:
user1773603
0
votes
1 answer

C# Call repeater onload event

How to call a function just after repeater loaded with data. Design:-
Sunny Singh
  • 127
  • 1
  • 12
0
votes
1 answer

Nested Repeater Using DataTable Asp.net

The problem is when I use dt1 as rpt2.DataSource(nested repeater source) the program runs fine , but as I use dt2 as source(and make Eval() changes accordingly) the outputs are of only First Repeater. Output for dt2=> 1 Rams 2 Processors 3…
0
votes
1 answer

Get the Clicked Item TextBox Displayed in Repeater Control ASP.Net

I need to implement discussion forum,so I am currently using asp.net repeater control. I have a textbox for adding a reply for each repeater item. Currently I am using a java script and styles for it. On first load the reply panel would not be…
KIS
  • 129
  • 1
  • 10
0
votes
1 answer

ASP.net Stopping a Repeater

I have a series of nested repeaters; for this example, assume 3. I'm binding the inner repeaters using the ItemDataBound event. I want the 2 outside repeaters to display their assigned repeater stuff. Then I want the 3rd and inner most repeater to…
Michael Kerute
  • 1,751
  • 2
  • 11
  • 5
0
votes
3 answers

ASP.net: More than 2 Nested Repeaters

My data comes from a database. I have an item data table with some basic properties. Item { ID, Name, Description, ... } Then I have a many to many relationship table with: Parent { ParentID, ChildID } I'm iterating…
Mike
  • 443
  • 1
  • 4
  • 7
0
votes
1 answer

Anonymous type for nested repeater (ASP .NET)

I have two nested repeaters in my *.aspx page.

<%#DataBinder.Eval(Container.DataItem, "Name")%>

Sir Hally
  • 2,318
  • 3
  • 31
  • 48
0
votes
0 answers

ACF Repeater is not working on home page, same loop works fine on interior pages. Have tried several methods

So basically I'm trying to run a loop of /downloads/ (using Easy Digital Downloads) on my homepage. I'm attaching custom fields to each album and trying to loop through that separately. This has been way more difficult than I imagined. I tried…
0
votes
1 answer

How to Conditionally determine Number of Data Items of a Nested Repeater Control!

I can use nested repeater to show my grouped data on a page (according to this: http://goo.gl/sH6g). In my case I have Category-Products structure and want to show each category and its products under it. But here are my problems: How can I limit…
Mehdi
  • 5,435
  • 6
  • 37
  • 57
0
votes
2 answers

System.OutOfMemoryException being thrown

I am getting a system.outofmemory exception in my code: While r1.Read() menu1id = r1("id") db.AddInParameter(command2, "@menu1id", DbType.Int32, menu1id) r2 = db.ExecuteReader(command2) …
Phil
  • 1,811
  • 9
  • 38
  • 60
0
votes
1 answer

How to keep a trace of a record inside a nested repeater?

I have the following implementation: As you can see I have a repeater (listing the Machines) and a nested repeater (listing the WindowsServices inside each Machine). For each Windows Service I can perform an action using a button. However, to…
Amokrane Chentir
  • 29,907
  • 37
  • 114
  • 158
0
votes
1 answer

Nested Repeater HeaderTemplate issue

Hello i am using nested repeaters (3 levels) and wanted to add header to a second level repeater, so I could assign title for item group. The issue is, when I add header template to second level repeater, my code behind can't find third level…
0
votes
1 answer

Binding a repeater with Dictionary>

Suppose i have a data table that contains data in following structure: Revenue-Certification-1000 Revenue-IT Exam Done-1000 Acadmics-Value1-100 Acadmics-Value23-1000 ... and so on i have written a query that will return me a Dictionary with Key as…
AChauhan
  • 207
  • 3
  • 15
0
votes
2 answers

Access textbox within asp.net repeater

I have a nested asp repeater which is displaying all my items correctly. I have another div within the ItemTemplate of each repeater which submits content to my code behind.
Tom smith
  • 670
  • 2
  • 15
  • 31
0
votes
1 answer

Display generic list data back to repeater in a grouped manner

I have a generic list List StudentInfo has Name,Marks,Subject,Age as properties. I get this StudentInfo back as as list, which am trying to bind to a repeater.
Sharpeye500
  • 8,775
  • 25
  • 95
  • 143