Velocity Reviews

Velocity Reviews (http://www.velocityreviews.com/forums/index.php)
-   ASP .Net Web Controls (http://www.velocityreviews.com/forums/f63-asp-net-web-controls.html)
-   -   Custom Control, ITemplate and nested bound controls (http://www.velocityreviews.com/forums/t780551-custom-control-itemplate-and-nested-bound-controls.html)

Brook 03-17-2008 03:05 PM

Custom Control, ITemplate and nested bound controls
 
Hi Everyone,

I've been interested in creating a custom control that wraps up a few common
UI elements and some styling. But, in order to make this earier to
understand, let's say my control is just a posh panel. It has curvy edges
rather than straight ones.

Now i have written a custom control which allows me to do the following in
aspx code :

<cc1:CurvyPanel runat="server">
<Content>
<asp:Label runat="server" Text="Hello World!"></asp:Label>
</Content>
</cc1:CurvyPanel>

The control is visible at runtime and design time.

However, when i try something a little more adventurous such as:

<cc1:CurvyPanel runat="server">
<Content>
<asp:Repeater ID="rptYears" runat="server">
<ItemTemplate>
<a href="<%#Eval("link") %>"><%# Eval("name")
%></a>
</ItemTemplate>
</asp:Repeater>
</Content>
</cc1:CurbyPanel>

Now, when i try to bind some data to my embedded repeater from my parent
page, it gives me the error

"InvalidOperationException was unhandled by user code
Databinding methods such as Eval(), XPath(), and Bind() can only be used in
the context of a databound control."

So, I was hoping my "curvypanel" would behave in the same way as a normal
..NET panel in terms of allowing content inside it to be independantly bound
to a set of data... so either it doesn't allow this or ive done something
wrong.

Can anyone help me by clarifying whether what im trying to do is possible?
and if so, provide any input on how to go about it? :)

thanks,
Andrew



Peter Bucher [MVP] 03-17-2008 10:23 PM

Re: Custom Control, ITemplate and nested bound controls
 
Hello Andrew

> "InvalidOperationException was unhandled by user code
> Databinding methods such as Eval(), XPath(), and Bind() can only be used
> in
> the context of a databound control."

Look what google says about that error message.

I guess, its for the reason, that your control doesnt represent a databound
control.
Anyway, that should work:

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

--
Gruss, Peter Bucher
Microsoft MVP - Visual Developer ASP / ASP.NET, Switzerland
http://www.aspnetzone.de/ - ASP.NET Zone, die ASP.NET Community
http://www.aspnetzone.de/blogs/peterbucher/ - Auf den Spuren von .NET


Brook 03-18-2008 03:40 PM

Re: Custom Control, ITemplate and nested bound controls
 
Thanks Peter - i made the changes and the control no longer throws the error.
In fact the control works in every way i'd expect.

The only thing that i wonder about now, is why my control is different to
say a normal asp:panel. Does an asp:panel perhaps inherit from some classes
that allow child controls to bind to their data sources using Eval?
Afterall, i don't want to bind any data to my control, i want to bind to the
child controls that get added into the controls ITemplate

At the moment, my custom control is inheriting from WebControl, and
implementing INamingContainer

thanks,
Andrew

"Peter Bucher [MVP]" wrote:

> Hello Andrew
>
> > "InvalidOperationException was unhandled by user code
> > Databinding methods such as Eval(), XPath(), and Bind() can only be used
> > in
> > the context of a databound control."

> Look what google says about that error message.
>
> I guess, its for the reason, that your control doesnt represent a databound
> control.
> Anyway, that should work:
>
> <%#DataBinder.Eval(Container.DataItem, "field").ToString()%>
>
> --
> Gruss, Peter Bucher
> Microsoft MVP - Visual Developer ASP / ASP.NET, Switzerland
> http://www.aspnetzone.de/ - ASP.NET Zone, die ASP.NET Community
> http://www.aspnetzone.de/blogs/peterbucher/ - Auf den Spuren von .NET
>
>


Teemu Keiski 03-20-2008 09:40 PM

Re: Custom Control, ITemplate and nested bound controls
 
"Databinding methods such as Eval(), XPath(), and Bind() can only be used in
the context of a databound control"

Sounds familiar error to me. ;-)

How's the template's instantiation in the control - regarding how it gets
added to Controls collection? And is template container specified
(TemplateContainer attribute)?

--
Teemu Keiski
AspInsider, ASP.NET MVP
http://blogs.aspadvice.com/joteke
http://teemukeiski.net


"Peter Bucher [MVP]" <peter.bucher@aspnetzone.de> wrote in message
news:93804E19-A3C8-41C7-AFAC-EB0B39DFCB4C@microsoft.com...
> Hello Andrew
>
>> "InvalidOperationException was unhandled by user code
>> Databinding methods such as Eval(), XPath(), and Bind() can only be used
>> in
>> the context of a databound control."

> Look what google says about that error message.
>
> I guess, its for the reason, that your control doesnt represent a
> databound control.
> Anyway, that should work:
>
> <%#DataBinder.Eval(Container.DataItem, "field").ToString()%>
>
> --
> Gruss, Peter Bucher
> Microsoft MVP - Visual Developer ASP / ASP.NET, Switzerland
> http://www.aspnetzone.de/ - ASP.NET Zone, die ASP.NET Community
> http://www.aspnetzone.de/blogs/peterbucher/ - Auf den Spuren von .NET




Brook 03-25-2008 02:55 PM

Re: Custom Control, ITemplate and nested bound controls
 
Hi - i think this is the code you're interested in seeing :-

private ITemplate _PanelContent;

private PlaceHolder phContent = new PlaceHolder();

[PersistenceMode(PersistenceMode.InnerProperty),
TemplateInstance(TemplateInstance.Single),
TemplateContainer(typeof(TemplateControl))]
public ITemplate Content
{
get { return _PanelContent; }
set { _PanelContent = value; }
}


protected override void OnInit(EventArgs e)
{
base.OnInit(e);
if (_PanelContent != null)
{

_PanelContent.InstantiateIn(phContent);
}
EnsureChildControls();
}



thanks,
Andrew


"Teemu Keiski" wrote:

> "Databinding methods such as Eval(), XPath(), and Bind() can only be used in
> the context of a databound control"
>
> Sounds familiar error to me. ;-)
>
> How's the template's instantiation in the control - regarding how it gets
> added to Controls collection? And is template container specified
> (TemplateContainer attribute)?
>
> --
> Teemu Keiski
> AspInsider, ASP.NET MVP
> http://blogs.aspadvice.com/joteke
> http://teemukeiski.net
>
>
> "Peter Bucher [MVP]" <peter.bucher@aspnetzone.de> wrote in message
> news:93804E19-A3C8-41C7-AFAC-EB0B39DFCB4C@microsoft.com...
> > Hello Andrew
> >
> >> "InvalidOperationException was unhandled by user code
> >> Databinding methods such as Eval(), XPath(), and Bind() can only be used
> >> in
> >> the context of a databound control."

> > Look what google says about that error message.
> >
> > I guess, its for the reason, that your control doesnt represent a
> > databound control.
> > Anyway, that should work:
> >
> > <%#DataBinder.Eval(Container.DataItem, "field").ToString()%>
> >
> > --
> > Gruss, Peter Bucher
> > Microsoft MVP - Visual Developer ASP / ASP.NET, Switzerland
> > http://www.aspnetzone.de/ - ASP.NET Zone, die ASP.NET Community
> > http://www.aspnetzone.de/blogs/peterbucher/ - Auf den Spuren von .NET

>
>
>



All times are GMT. The time now is 07:29 AM.

Powered by vBulletin®. Copyright ©2000 - 2013, vBulletin Solutions, Inc.
SEO by vBSEO ©2010, Crawlability, Inc.


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57