I had a bunch of controls that I displayed, hid, enabled and disabled based on actions in the web page. Everything worked until i put them into an accordian. Now I can't get the Javascript to be able to update their state. I have a small example

this is the Javascript

 <script type="text/javascript">
  var ctrl = document.getElementById('<%= btmRocp.ClientID %>');

    function ShowPanel(control)
{
    alert('<%= btmRocp.ClientID %>');
    ctrl.disabled = true;
}
</script>

This is the Accordian

 <form id="form1" runat="server">
    <div>
        <asp:ScriptManager ID="ScriptManager1" runat="server">
        </asp:ScriptManager>
        <cc1:Accordion  ID="MyAccordion"
                        runat="Server"
                        SelectedIndex="0"                      
                       >
         <Panes>
            <cc1:AccordionPane ID="accordianPane0" runat=server>
            <Header>Create New Report </Header>
            <Content>a
            <asp:Button ID="Button1"  onmouseup="ShowPanel('') " runat="server" Text="Button" />            
            <asp:Button ID="btmRocp" runat="server" Text="Button" />
            </Content>
            </cc1:AccordionPane>
            <cc1:AccordionPane ID="accordianPane1"  runat=server>
            <Header>Create New Report </Header>
            <Content>b</Content>
            </cc1:AccordionPane> 
            </Panes>

        </cc1:Accordion>

I would love to know what i am doing wrong here the Alert prints out the right ID.

If i do something where i pass the "this" Object to the function i can disable that button but I truly need it to disable, or hide like 10 objects

Does anyone have an idea?

Sample Code at http://www.riconllc.com/accordian.zip

link|improve this question
can you explain what really you are trying to achieve?? – Perpetualcoder Dec 18 '08 at 18:11
i am trying to be able to access my controls that are in the accordian from javascript to control their state does that make sense? – RIco Dec 18 '08 at 18:16
Have you viewed the source of the page as rendered in the browser to ensure that the ClientID really matches the HTML? – hova Dec 18 '08 at 18:54
yes i did do that and they do match. – RIco Dec 18 '08 at 18:56
ok i just uploaded my sample code at riconllc.com/accordian.zip If anyone has a sec to help me out. – RIco Dec 18 '08 at 19:03
feedback

1 Answer

up vote 0 down vote accepted

What is the default state of the Accordion? collapsed? I have no idea how the Accordion works, but I'm suspecting that it is modifying the HTML DOM such that when the page first loads "btmRocp" is not actually present on the page itself, until it becomes "visible". That is, it might be injecting controls into and out of the page, based on the accordion status.

Your best bet in figuring out this behavior is to insert "debugger;" statements into your page at appropriate points, to inspect the live DOM at those points in time.

<textbox id="debugbox" onblur="this.value = eval(this.value);"></textbox>

Is a good way to monkey with script on your page as well.

link|improve this answer
hmm ok so the value in the textbox is "undefined" – RIco Dec 18 '08 at 19:25
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.