hi all,
i am using ultrawebtab with three seperate forms, all are loaded via target url property.
My scenario is, i want to the get the date value from one of the tabs and to be displayed in a label above the ultrawebtab!
i was not able to postback or submit the form which contains the ultrawebtab, only forms inside the tabs are getting postback!
Is there anyoption available to submit the mainform via javascript or codebehind.
Thanks in advance.
--vijayanand
ivan thanks for the reply!
still not able to solve the problem! actually i am having webcalender inside the ultrawebtab with target url in seperate page.
When i change the date, page inside the panel only getting postback. not the page which contains the ultrawebgrid. so i was not able to post the changed date above the ultrawebtab.
i was not able to get the element out the ultrawebtab using document.getelementByid method.
Thanks.
Hello,
You can use the function document. getElementById(‘”ElementID”) and find the element that contain date value text box. After that you can change the value of label above tabs with compatible property.
Please take a look at the sample code below:
function Button1_onclick() { var dateContainer = document.getElementById("<%=ElemetnWithDate.ClientID %>"); var label = document.getElementById("<%=LabelAboveTab.ClientID %>"); textBox.value= dateContainer.value; }
Hope this helps.