Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
635
Close button in ultrawebtab
posted

Hi,

 I am using ultawebtab version 8.2.I am showing files in tabs.close button feature is not present i implemented it manually by adding img tab to tab text.i am closing tab by javascript.

    function closeTab(tabKey) {
            var myUltraWebTab = igtab_getTabById('tabControl');
            if (myUltraWebTab != null) {
                myUltraWebTab.Tabs[tabKey].setEnabled(false);
                myUltraWebTab.Tabs[tabKey].setVisible(false);
            }
        }

but problem is in case of word,powerpoint file these documents are opened as dialoug box.I couldnt close it on click of close button.Is it possible to close these file by javascript or any other way??