I have web application in that i have a ajaxTabedinterface,I want open the pop-window when i click on tab-panel for this i have create java script function and i call this function in tab-panel OnclientClick ,and i run the application then it doesn't show Tabs it show just white page only.Here i have post my code what i did please check it once give me any suggestion where i can change the code .....

Tabpanle

                <cc1:TabPanel runat="server" HeaderText="Documents" OnClientClick="openwindow(),return false;" ID="TabPanel4">

         <ContentTemplate> </ContentTemplate>
          </cc1:TabPanel> 

Javascript

   <script type="text/javascript" language="javascript">

    function openwindow() {

        retVal = window.open("AllClients.aspx", null, "left=150px,menubar=no, top=150px, width=800px, height=450px, scrollbars=no, status=no, resizable=no");
        retval.focus();
    }
</script>

please help me how to open a popupwindow on tabpanel onclient click event...

link|improve this question

53% accept rate
feedback

1 Answer

up vote 0 down vote accepted

First, check your OnClientClick definition. When you put "openwindow(),return false;", you should have written "openwindow(); return false;"

link|improve this answer
Hi thank you for giving response in normal button click event i have call the javascript with out return it is working but whaen i decalre same in tabpanel it is not working .. – tiru Aug 6 '11 at 7:01
Can i call OnClientClick event in tabpanel? – tiru Aug 6 '11 at 7:05
feedback

Your Answer

 
or
required, but never shown

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