﻿<?xml version="1.0" encoding="utf-8"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0"><channel><title>Intersoft Community - WebDesktop - Hide Tab in WebTab</title><link>http://www.intersoftsolutions.com/Community/WebDesktop/Hide-Tab-in-WebTab/</link><description /><generator>http://www.intersoftsolutions.com</generator><language>en</language><copyright>Copyright 2002 - 2015 Intersoft Solutions Corp. All rights reserved.</copyright><ttl>60</ttl><item><title>Hide Tab in WebTab</title><link>http://www.intersoftsolutions.com/Community/WebDesktop/Hide-Tab-in-WebTab/</link><pubDate>Thu, 07 Jan 2010 01:14:37 GMT</pubDate><dc:creator>julia</dc:creator><category>WebTab</category><description>&lt;p&gt;Hi Charles,&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;Sorry for my last snippet. Actually you don't have to set true in webTabItem.Enabled. So, the snippet for enabling the WebTab is :&lt;/p&gt;&lt;pre&gt; function Button3_onclick() {
            var webTab = ISGetObject("WebTab1");
            var webTabItem = webTab.TabPages.GetNamedItem("Tab2");
            webTabItem.Enable();
        }&lt;/pre&gt;

&lt;p&gt; Setting it to true or false will take no effect since it belongs to enable() behavior. That's why for disabling the WebTab, you still have to use webTabItem.Disable(). Thank you.&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;Regards,&lt;/p&gt;
&lt;p&gt;Julia&lt;/p&gt;</description></item><item><title>Hide Tab in WebTab</title><link>http://www.intersoftsolutions.com/Community/WebDesktop/Hide-Tab-in-WebTab/</link><pubDate>Wed, 06 Jan 2010 15:59:48 GMT</pubDate><dc:creator>cyoung311</dc:creator><category>WebTab</category><description>&lt;p&gt;How about instead of a different property we change it to a method like&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;...webTabItem.Enable(true/false); ???&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;Best,&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;Chuck&lt;/p&gt;</description></item><item><title>Hide Tab in WebTab</title><link>http://www.intersoftsolutions.com/Community/WebDesktop/Hide-Tab-in-WebTab/</link><pubDate>Sun, 27 Dec 2009 23:54:23 GMT</pubDate><dc:creator>julia</dc:creator><category>WebTab</category><description>&lt;p&gt;Hi George,&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;Unfortunately, we don't have API to hide the tab. RIght now, we can disable/enable the WebTab or close the tab.&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;Code snippet for Closing the tab:&lt;/p&gt;&lt;pre&gt;function Button1_onclick() {
            var webTab = ISGetObject("WebTab1");
            var webTabItem = webTab.TabPages.GetNamedItem("Tab1");
            webTabItem.Close();
        }
&lt;/pre&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;Code snippet for enable/disable the tab:&lt;/p&gt;&lt;pre&gt;        function Button2_onclick() {
            var webTab = ISGetObject("WebTab1");
            var webTabItem = webTab.TabPages.GetNamedItem("Tab2");            
            webTabItem.Disable();
        }        

        function Button3_onclick() {
            var webTab = ISGetObject("WebTab1");
            var webTabItem = webTab.TabPages.GetNamedItem("Tab2");
            webTabItem.Enable(true);
        }
&lt;/pre&gt;

&lt;p&gt;If you need the API, you can post it as feature request in Developer Network&amp;gt;Community Center&amp;gt;Product Feedback.&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;Regards,&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;Julia&lt;/p&gt;</description></item><item><title>Hide Tab in WebTab</title><link>http://www.intersoftsolutions.com/Community/WebDesktop/Hide-Tab-in-WebTab/</link><pubDate>Sat, 26 Dec 2009 10:56:01 GMT</pubDate><dc:creator>gkfahnbulleh@lakepiso.com</dc:creator><category>WebTab</category><description>&lt;p&gt;How do I HIDE a tab in WebTab?&lt;/p&gt;</description></item></channel></rss>