Re: Accordion extender and error in ajax 3.5
|
Samson Reid |
|
4/29/2008 3:50:53 AM |
| but in the source there is a accodion extender like this <cc1:Accordion ID="Accordion1" runat="server"> <cc1:AccordionExtender ID="Accordion1_AccordionExtender" runat="server"
Enabled="True" TargetControlID="Accordion1"></cc1:AccordionExtender> <Panes> <cc1:AccordionPane ID="AccordionPane1" runat="server" ContentCssClass=""
HeaderCssClass=""></cc1:AccordionPane> </Panes>
</cc1:Accordion>
and the control accordion object "error creating control -Accordion" Type AjaxControlToolkit does not have a public property named "AccordionExtender" my question is the accordionextender for what?? i delete source AccodionExtender, but the accordion control is "error creating control -Accordion component must be an Accordion control parameter name:component" , but when i run , the accordion there is no problem , but i uses last ajax(v 1.0 for asp.net 2.0) preview Accordion no problem Post Comments |
|
Re: Accordion extender and error in ajax 3.5
|
Shirly Selkirk |
|
4/29/2008 3:52:09 AM |
You use the Accordion like this: <cc1:Accordion ID="Accordion1" runat="server"> <Panes> <cc1:AccordionPane ID="AccordionPane1" runat="server"> <Content> Your content here </Content> </cc1:AccordionPane> </Panes> </cc1:Accordion> Please look at this bug report: http://www.codeplex.com/AtlasControlToolkit/WorkItem/View.aspx?WorkItemId=13747 Post Comments |
|
Shirly, Thanks for the code. Post Comments |
|
Realy this code is useful Post Comments |
|