I have an ultrawebtab tab with a radio button list. when one of the buttons is clicked, i want the parent page (ultrawebtab) to reload. in other words, go to the state at which it was first opened. I can't seem to get the content pane to talk to its parent page to make this happen. Please help.
Sorry for the delay.
I called a function on the parent page from the child page:
function settab(c) { var tb = document.getElementById('hf_selection') tb.value = c; form1.submit(); parent.reloadpage(c); }
The variable 'c' is the tab number.
Here is the function on the parent page:
function reloadpage(c) {
var UltraWebTab = igtab_getTabById('UltraWebTab1'); var tab2 = UltraWebTab.tabFromKey(c); UltraWebTab.setSelectedTab(tab2)
}
I hope that helps.
Would you mind sharing your solution? I am trying to do something similar to set some values on the page containing the Tab control when certain values change in the content page.
Never mind. I did it thru javascript.