Custom template in Repeater

D

dotNet

Hello!

I want to add another template to the templates that are already
available with the repeater control.

This is what I have done so far...

Created a class that inherits from WebControl and implements
INamingContainer to hold my controls that I add in my template.

public class PagedRepeaterTemplateItem : WebControl, INamingContainer
{
}


Inherit the repeater to my custom repeater..

public class PagedRepeater : Repeater
{
//Added an ITemplate property..

private ITemplate pagingTemplate = null;
public ITemplate PagingTemplate
{
get { return pagingTemplate; }
set { pagingTemplate = value; }
}

//Override the current CreateChildControls()
protected override void CreateChildControls()
{
this.Controls.Clear();

PagedRepeaterTemplateItem item = new PagedRepeaterTemplateItem();

PagingTemplate.InstantiateIn(item);
this.Controls.Add(item);

}
}

I have also tried to override the Render()-method, but when I check the
this.Controls()-collection when I am in that method I notice that the
controls that I add in the CreateChildControls() are gone.

Anyone know what I have missed, and how I can make it to work?

Thanks!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,755
Messages
2,569,537
Members
45,020
Latest member
GenesisGai

Latest Threads

Top