C# - Nested Repeater With Child Repeater In A User Control?

Feb 18, 2011

Edit: I have a working solution already - I would just like to know why my original attempt didn't work. My original attempt is the code below.

I'm using the approach I found here:[URL] 306154 to implement a nested Repeater. Each parent item has one or more children items (the point of having the nested Repeater) with a dropdown horizontally aligned to each child item. In an effort to re-use the nested part of the Repeater I wanted to develop that piece as a user control but couldn't get it to work. I am wondering if it is even possible and if so how?

Here is my user control apsx:

<asp:Repeater ID="NestedRepeater" runat="server">
....
<ItemTemplate>
<tr class="text" id="RepeaterItemRow" runat="server">
<td>
<%#DataBinder.Eval(Container.DataItem, "Name") %>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
</tr>
</ItemTemplate>

And here is my code behind for the user control. I noticed when I debugged NestedDataSource was null even though in the parent page load the data is there:

public DataSet NestedDataSource
{
get;
set;
}
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
NestedRepeater.DataSource = NestedDataSource;
NestedRepeater.DataBind();
}
}

In the parent Repeater in the `<ItemTemplate> I have:

<asp:RepUC ID="NestRep" runat="server" NestedDataSource='<%#((DataRowView)Container.DataItem).Row.GetChildRows("nestedrel") %>'>

And finally the page code behind:

protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
BuildWBS();
}
}
private void BuildPage()
{
DataSet ds = new DataSet();
ds = DataAccessLayer.GetData("System");
ds.Relations.Add("nestedrel", ds.Tables[0].Columns["Id"], ds.Tables[1].Columns["ParentId"]);
ParentRepeater.DataSource = ds;
ParentRepeater.DataBind();
}

The page loads but nothing relating to the repeater appears on the screen. So, can you see anything wrong with what I have? Is the way I tried doing this even possible?

View 1 Replies


Similar Messages:

Web Forms :: Implement One More Repeater Control Inside Existing Repeater Control (Nested Repeater)

Feb 3, 2014

I am using a repeater control and i want to use one more repeater control inside the existing repeater control . 

Like this:

<asp:Repeater ID="Repeater1" runat="server">    <HeaderTemplate> </HeaderTemplate>       
<ItemTemplate>
<!-- start child repeater -->     Here I want to use one repater control      <!-- end child repeater -->
</ItemTemplate>
</asp:Repeater>

View 1 Replies

Forms Data Controls :: Binding Parent Repeater Item Index In Child Repeater Control?

Jun 17, 2010

I want to bind parent repeater item index in child repeater control using inline code not code behind side.

For example

[Code]....

View 2 Replies

Forms Data Controls :: Using Nested Repeaters And Access A Value From Parent Repeater Within The Child?

Apr 30, 2010

I am using nested repeaters and wanted to access a value from my parent repeater within the child...is this possible?

View 3 Replies

Nested Repeater Show Data That Matches Parent Repeater?

Mar 15, 2011

I am using a repeater to build a custom table. However, I can't figure out how to make the table show subtotal if the next rows tour does not match the previous rows.

Something similar to that.

row1 tour1
row2 tour 1
tour1 subtotal
row3 tour2
row4 tour2
subtotal
total

[code].....

but this shows all the data in the nested repeater not the ones that match the parentrepeater fields for example tour,theme,dep7 should match in the child repeater

View 1 Replies

Forms Data Controls :: Show / Hide A Div In A Nested Repeater By Clicking On A Button Inside Parent Repeater?

Nov 12, 2010

what changed do I need to make to my code for it to achieve what I'm after.

At the moment I am getting a "cannot cast to type" error message with the below code.

I have also tried calling the ItemDataBound method in with the parent repeater tags and had no errors but when I clicked on the button it would just move back to the top of the page and would not hide or show any data. Also I have made the div style to none but the first record still shows its child but the rest don't.

[code].....

View 1 Replies

C# - How To Get Parent Repeater Item From Child Repeater

Mar 18, 2011

I have two repeater which are nested..Means there is one repeater and inside that i have another repeater.

I want data in following format:

*Transaction Id:1xasd2*
Product1 2 500
*Transaction Id:2asd21*
Product2 1 100
Product3 2 200

So how can i achieve this?

View 1 Replies

Forms Data Controls :: How To Print A Message In Child Repeater If No Data Corresponding To Parent Repeater

May 12, 2010

protected void Page_Load(object sender, EventArgs e)

[Code]....

View 2 Replies

Forms Data Controls :: Finding Control Within Nested Repeater?

Jun 8, 2010

What I'm trying to do is find a control within a nested repeater when the OnItemDataBound event is fired on the 'main' repeater.

[Code]....

This has driven me mental! And I've done stacks of web searches and ended up confusing myself even further.

View 4 Replies

Forms Data Controls :: Nested Repeater Control Does Not Work?

Sep 8, 2010

I have a presentation to the CFO in two hours. I can't get a nested repeater control to work right, something to do with teh placement of the <table> tags I think.The first repeater first section works fine, then the child repeater shows the first child section right, but the next section of the parent repeater loses all the formatting applied at the parent table. I've tried vaious permutations of where to place the closing table tag of the outer and the inner and get different results, but never the right results.

Here is my current code:

<tr
style="font-size:small">

<th
style="width:100px">[code]....

These are the results I get:

View 7 Replies

Forms Data Controls :: Finding Child Control In Repeater

Aug 23, 2010

I am trying to find a child control from a repeater control's child control. I have the following structure like a top control is a repeater, below which is a Panel and below this is a DateControl(custom control).

I want to find the DateControl.

<asp:Repeater runat="server"
ID="rptMembers"
<ItemTemplate>
<asp:Panel ID="pnlAddDependent".....

View 4 Replies

Forms Data Controls :: Retrieve Values From Nested Repeater Control?

Jan 4, 2011

am using C# .net.. in my page am having nested repeater control.. in child repeater there is check box and a hidden ID. i want to store(here am get strucked) the ID of checked box in to my data base.. look at the below code..

HTML page....

[Code]....

View 2 Replies

Forms Data Controls :: How To Add CheckBoxList Control In Nested Repeater Dynamically

Sep 28, 2010

How can i create Dynamic Child Repeater Control inside of Parent Repeater (This one created Dynamically)

and

How to Create a Dynamic CheckBoxList control inside of a Child Repeater Control(if we able to create in Parent Repeater Control Successfully)

View 1 Replies

Forms Data Controls :: Bind GroupBy Values In Nested Repeater Control?

Sep 24, 2010

In a dataset i m getting values like this

IdApplication ApplicationDesc Permissions
1 User Add
1 User Delete
1 User Update
2 Role Add
2 Role Delete
3 User2 Modify
3 User2 Change

How can i Bind like in nested repeater control

In my Nested repeater control bound i need to Bind the Values like this Formate According Groupwise

User Add Update
Role Add Delete
User2 Modify Change

In the nested repeater control i taken a label in Header Template i need to bind 3 different values Application Desc once User, Role, User2 and in Item Template i had binded the <%# Eval("Application Desc")%> but i am getting like this all permissions in 1 line

Add Update Add Delete Modify Change

View 5 Replies

C# - How To Access One Repeater's Control Into Another Repeater's OnItemCommand() Method

Oct 15, 2010

lets say I want to make a label of repeater1 visible in repater2's ItemCommand() method..

e.Item.FindControl("rpt1Label").Visible=True;

is not working..how else do you do it ?

[EDIT]

changed that to repeater1.FindControl("rpt1Label").Visible=True;

This is throwing object reference null exception

View 1 Replies

C# - How To Expose A Repeater's Templates From Another Control That Contains The Repeater

Sep 30, 2010

If I have a custom user control (say, MyCustomControl.ascx) which contains a number of other controls including a repeater, is there any way to expose that repeater's templates as templates for MyCustomControl?

For example, I would want to be able to do this:

[code]....

There could potentially be more than one repeater or other templated controls within the parent control, in which case I would like to be able to expose all of those templates for all of the controls in the same way.

My first thought was to simply expose the repeater's templates as ITemplate properties on MyCustomControl, but that didn't work since there's no (obvious) way to access the repeater's DataItem from the templates doing it that way.

View 2 Replies

C# - Repeater Using A User Control

Sep 2, 2010

I have a repeater with which I want to use to show a user control multiple times, populated with dataCurrently, I have this:

<asp:Repeater runat="server" ID="MyRepeater" >
<ItemTemplate>
<uc1:MyItems ID="MyItems1" runat="server" />
</ItemTemplate>
</asp:Repeater>

View 2 Replies

Access The Group Of A Linq Group - By Query From A Nested Repeater Control?

Mar 26, 2010

I'm using a linq group by query (with two grouping parameters) and would like to use the resulting data in a nested repeater.

var dateGroups = from row in data.AsEnumerable()
group row by new { StartDate = row["StartDate"], EndDate = row["EndDate"] };
"data" is a DataTable from an SqlDataAdapter-filled DataSet. "dateGroups" is used in the parent repeater, and I can access the group keys using Eval("key.StartDate") and Eval("key.EndDate").

Since dateGroups actually contains all the data rows grouped neatly by Start/End date, I'd like to access those rows to display the data in a child repeater. To what would I set the child repeater's DataSource? I have tried every expression in markup I could think of; I think the problem is that I'm trying to access an anonymous member (and I don't know how.) In case it doesn't turn out to be obvious, what would be the expression to access the elements in each iteration of the child repeater? Is there an expression that would let me set the DataSource in the markup, or will it have to be in the codebehind on some event in the parent repeater?

View 3 Replies

Data Controls :: Display Image In Another Image Control When Mouse Is Moved In Nested Repeater

Jul 17, 2015

I have one repeater that has one image(image1) bound from data base .also i have one pop up div that  has another image(image2) without any image url.i wanna when click on image1 thats url put in image2's url and my pop up div show

View 1 Replies

Forms Data Controls :: Object Reference Not Set To An Instance Of An Object In Nested Repeater Control Of CheckBox List ...

Sep 24, 2010

[Code]....

I am getting error of in Foreach loop

[Code]....

How to resolve this situation or any other alternative to cum out of this problem.

View 6 Replies

Loading User Control In A Repeater?

Mar 23, 2010

I have a Repeater control that loads instances of a custom control I have built. This repeater looks like this:

<asp:Repeater ID="myRepeater" runat="server" OnLoad="myRepeater_Load">
<HeaderTemplate>
<table border="0" cellpadding="0" cellspacing="0">
</HeaderTemplate>
<ItemTemplate>
<tr><td><my:CustomControl ID="myControl" runat="server"
OnLoad="myControl_Load" />
</td></tr>
</ItemTemplate>
<FooterTemplate>
</table>
</FooterTemplate>
</asp:Repeater>

I bind to the Repeater through the myRepeater_Load event handler. My custom control is used to render an item within the Repeater. Because of this, I am trying to set properties on the custom control during the myControl_Load event handler. However, I do not know how to access the current item during the myControl_Load event.

Is there a way I can pass along the current item or access the current item during the myControl_Load event? If so, how?

View 3 Replies

Possible To Have A Nested Repeater With The Nested Repeater?

Jun 17, 2010

Does anyone know if its possible to have a nested repeater, with the nested repeater initially collapsed and expandable via the ajax CollapsiblePanelExtender

Code:

[code]....

View 1 Replies

AJAX :: User Control With ModalPopup In A Repeater?

Dec 24, 2010

I have a user control that contains a modal popup extender.

I am using the user control inside of a repeater so it could be shown multiple times on a page.

Everything works fine if the repeater only contains one item.

When there are multiple user controls on the page I get the following error:

"Microsoft JScript runtime error: Sys.InvalidOperationException: Two components with the same id 'PosAdjPopup' can't be added to the application."

How do I get my user control to work with the modal popup extender when it will be used multiple times on a page?

Can I keep the modal popup extender in the user control or do I have to put it on my aspx page and trap the event on the button click?

View 1 Replies

C# - Proper Way To Initialize A User Control Created In A Repeater?

Jan 15, 2010

Relevant code from DetailsBERS.ascx file:

<%@ Register Src="BERS.ascx" TagName="BERS" TagPrefix="ucBERS" %>
<asp:Repeater ID="repeatBERS" runat="server"><ItemTemplate>
<tr>
<td id="Td1" runat="server">
<asp:TextBox runat="server" ID="txtTest" Text='<%#DataBinder.Eval(Container, "DataItem.id_bers")%>' MaxLength='<%#DataBinder.Eval(Container, "DataItem.id_bers")%>' />
<ucBERS:BERS ID="ucBERS" runat="server" IdBers='<%#DataBinder.Eval(Container, "DataItem.id_bers")%>' />
</td>
</tr>
</ItemTemplate></asp:Repeater>

[Code]....

View 1 Replies

C# - Nesting Repeater In Gridview: Hiding Gridview Row And Repeater Header If Data Is Not There In Repeater?

Apr 21, 2010

I have nested a repeater control in Gridview. Right now it is showing gridview rows and repeater header for every case(whether data is there or not for that particular grid view row in the repeater control). I want to hide the gridview row and repeater control header when there is no data present for that particular gridview row. That case I handled at code level by filtering the resulted data table.

Now the another problem I am facing: I have allowed the paging on the gridview i.e. pagesize 3. When page loads it works fine, but when I go to page 2 then it generates following error: Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index

Below is the code to fill the grid, paging and fill repeater on rowdatabound event of grid.

[code].....

View 1 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved