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

Skip ItemDataBound event of the repeater

Is there a way I can skip ItemDataBound event of the repeater like using e.Handled = true inside the event. I know RepeaterItemEventArgs does not contain a Handled property. Actually I want to bind repeater inside a datalist's databound event due…
Haris
  • 691
  • 3
  • 19
  • 34
0
votes
1 answer

Buttons in Nested Repeater control to access information at grand parent level

In an ASP.Net 4.0 web forms based application I have a products listing page which displays list of products in a DevExress' ASPxDataView. To show all the sizes of the product there is a repeater control which is bound for each product in…
Haris
  • 691
  • 3
  • 19
  • 34
0
votes
2 answers

get value of label when button clicked in nested repeater asp.net vb

I have nested repeaters, each item in the nested repeater has a label and a button on it, i want to beable to access the label.text when the button is clicked, I think i'm nearly there as I can return the index of the repeater and nested repeater…
Jammer
  • 2,330
  • 11
  • 48
  • 77
0
votes
1 answer

Accessing a parent repeater DataItem from a nested repeater

I'm trying to access a DataItem of a parent repeater from a nested repeater, but I keep getting blanks/nothing returned. Basic Example: <%# Eval("product_name") %>
brendo234
  • 355
  • 2
  • 17
0
votes
1 answer

Hide 1st outer repeater in jQuery form repeater

$(document).ready(function () { $('.outer-repeater').repeater({ show: function() { $(this).slideDown(); }, hide: function (deleteElement) { …
bilguun83
  • 1
  • 1
0
votes
1 answer

ASP.NET repeater dynamic value

I try to use a repeater in repeater in ASP.NET, but I want to change datasource from every repeat. My aspx markup is:
TaBuAy
  • 3
  • 1
0
votes
1 answer

ItemTemplate misplaced inside a table

So, I tried to fill in a ItemRepeater inside a table. But I think there is some kind of error, in the indentation. Code is like this:
Henry B
  • 29
  • 8
0
votes
1 answer

How to send jquery object data through AJAX to php?

I am using Repeater JS and it uses repeaterVal() function to fetch all input field values from nested repeater form and provides an object like this: So, I created a variable var formData = jQuery('.repeater').repeaterVal() and passed that formData…
0
votes
1 answer

Nested asp repeaters using complex object

I have a complex object with nested collection of objects that need to be binded to a repeater/shown in a table. Object shows 14 items: I would like to display data as such: Objects looks like: I need to show "FieldName" in table/column header…
obautista
  • 3,517
  • 13
  • 48
  • 83
0
votes
2 answers

Bootstrap is messing with my table layout when i use repeater

I have a repeater with a couple nested repeaters. Everythink works fine, except for the layout when I try to use bootstrap. In the first picture I try to make it work inside a div with class=row. Everything is crazy. Even when i try to have it…
0
votes
1 answer

ASP.net Repeater: Best practice for nested layout

Basically, I'm asking for the best way to do the following: I have a layout like this
cjhubbard
  • 3
  • 3
0
votes
2 answers

Twig Wordpress Repeater within a repeater

I would like to ask for help regarding a repeater within a repeater on Wordpress using Twig. The Services section shows up correctly but the Features section within the Services section isn't showing up. Here is a screenshot of the Wordpress…
0
votes
1 answer

Access RepeaterItem from JavaScript for accessing child controls

I have a repeater (for content posts) which contains an update panel, which in turn, contains another repeater as a (child for comments). What I am trying to achieve is having a user comment/liking on a post. The values are verified using…
Joachim Prinsloo
  • 618
  • 3
  • 12
  • 31
0
votes
1 answer

Repeater Control, Insert

I am trying to insert a comment using repeater Control my code in html
0
votes
1 answer

Add row to inner repeater of nested repeaters at runtime c#

I am building a web application to construct a document. The document has paragraphs (outer repeater) and subparagraphs (inner repeater). What I'm looking for is a way to add a blank subparagraph to an existing document. My markup:
Pete Hesse
  • 45
  • 1
  • 9