From what it looks like EO tabitem object is not a container control, meaning it does not allow for child content. In order for an object to allow content items it needs to implement INamingContainer. Basically you will not be able to add any controls
to a tab item. I would say you could create a sub class that inherits from EO.TabItem and use it that way, but I do not know enough about that toolkit to say it will work inconjunction with the other controls.
princeshils
0 Points
3 Posts
AjaxToolKit ToggleButton inside EO.Web Control
Aug 03, 2012 04:43 PM|LINK
I want to use AjaxToolKit ToggleButtonExtender Inside EO.Web TabControl But it's shows error:
<eo:TabItem Text-Html="About SkillSelect">
<asp:ToggleButtonExtender ID="ToggleButtonExtender1" runat="server">
</asp:ToggleButtonExtender>
</eo:TabItem>
Error:
Parser Error Message: Type 'EO.Web.TabItem' does not have a public property named 'ToggleButtonExtender'.
What can I do? Please help me!!
Thanks.
aterra
Participant
910 Points
162 Posts
Re: AjaxToolKit ToggleButton inside EO.Web Control
Aug 03, 2012 05:03 PM|LINK
From what it looks like EO tabitem object is not a container control, meaning it does not allow for child content. In order for an object to allow content items it needs to implement INamingContainer. Basically you will not be able to add any controls to a tab item. I would say you could create a sub class that inherits from EO.TabItem and use it that way, but I do not know enough about that toolkit to say it will work inconjunction with the other controls.
chetan.sarod...
All-Star
65619 Points
11118 Posts
Re: AjaxToolKit ToggleButton inside EO.Web Control
Aug 06, 2012 03:37 AM|LINK
Please post your query here http://www.essentialobjects.com/forum/topics3_Support.aspx
Senior Software Engineer,
Approva Systems Pvt Ltd, Pune, India.
princeshils
0 Points
3 Posts
Re: AjaxToolKit ToggleButton inside EO.Web Control
Aug 06, 2012 06:15 AM|LINK
Ok Thanks!