<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Custom Entity - HideDefaultTabViews in Vault Customization Forum</title>
    <link>https://forums.autodesk.com/t5/vault-customization-forum/custom-entity-hidedefaulttabviews/m-p/8670957#M5306</link>
    <description>&lt;P&gt;Hi Nick,&lt;/P&gt;
&lt;P&gt;As far as I oversee the principle we need to have a 1:1 ratio of default tabs being replaced and custom tabs working as a replacement.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 20 Mar 2019 09:25:02 GMT</pubDate>
    <dc:creator>Markus.Koechl</dc:creator>
    <dc:date>2019-03-20T09:25:02Z</dc:date>
    <item>
      <title>Custom Entity - HideDefaultTabViews</title>
      <link>https://forums.autodesk.com/t5/vault-customization-forum/custom-entity-hidedefaulttabviews/m-p/8667443#M5303</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm trying to turn off the Default Tabs for my custom entity, and it doesn't appear to work&lt;/P&gt;
&lt;P&gt;I have a custom tab that is working as I want, but it would look better if the default tabs were not there&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The code I have is below, but it can't be that simple (because otherwise it would work)&lt;/P&gt;
&lt;P&gt;Can someone tell me where I'm going wrong&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;
&lt;P&gt;Nick&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;public IEnumerable&amp;lt;CustomEntityHandler&amp;gt; CustomEntityHandlers()
{
  CustomEntityHandler handler = new CustomEntityHandler("b1f67d6a-0666-4e94-ab23-0b06fed712e1")
  {
    HideDefaultTabViews = true
  };
  return new CustomEntityHandler[] { handler };
}
&lt;/PRE&gt;</description>
      <pubDate>Tue, 19 Mar 2019 03:01:00 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vault-customization-forum/custom-entity-hidedefaulttabviews/m-p/8667443#M5303</guid>
      <dc:creator>Nick_Hall</dc:creator>
      <dc:date>2019-03-19T03:01:00Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Entity - HideDefaultTabViews</title>
      <link>https://forums.autodesk.com/t5/vault-customization-forum/custom-entity-hidedefaulttabviews/m-p/8667927#M5304</link>
      <description>&lt;P&gt;You need to collect all existing tabs, add your custom one and use as a replacement. Find uploaded an extended SDK sample "Hello World" that implements this approach. A preview of the code:&lt;/P&gt;
&lt;PRE&gt;DetailPaneTab mExisting = new DetailPaneTab("File.Tab.MyGrid", "OverrideTab", SelectionTypeId.File,
                typeof(DetailPaneTab));
            fileTabs.Add(mExisting);
            mExisting.Replaces = "File.Versions"; // .Uses, .WhereUsed, .View ;see application.TabPageIds for valid values (break log on to review)&lt;/PRE&gt;
&lt;P&gt;Note - the sample is Vault API 2018.&lt;/P&gt;</description>
      <pubDate>Tue, 19 Mar 2019 09:20:54 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vault-customization-forum/custom-entity-hidedefaulttabviews/m-p/8667927#M5304</guid>
      <dc:creator>Markus.Koechl</dc:creator>
      <dc:date>2019-03-19T09:20:54Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Entity - HideDefaultTabViews</title>
      <link>https://forums.autodesk.com/t5/vault-customization-forum/custom-entity-hidedefaulttabviews/m-p/8670168#M5305</link>
      <description>&lt;P&gt;Hi Markus&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;That works well &amp;amp; I have my tab replacing one of the Custom Object tabs&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There are two standard Custom Object tabs, and I don't really want either to be visible&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I've "fixed" it for now by adding an "About" tab and using this as a replacement for the second (which isn't too bad), but is it possible to hide the tab completely?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for your help so far&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Nick&lt;/P&gt;</description>
      <pubDate>Tue, 19 Mar 2019 22:39:18 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vault-customization-forum/custom-entity-hidedefaulttabviews/m-p/8670168#M5305</guid>
      <dc:creator>Nick_Hall</dc:creator>
      <dc:date>2019-03-19T22:39:18Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Entity - HideDefaultTabViews</title>
      <link>https://forums.autodesk.com/t5/vault-customization-forum/custom-entity-hidedefaulttabviews/m-p/8670957#M5306</link>
      <description>&lt;P&gt;Hi Nick,&lt;/P&gt;
&lt;P&gt;As far as I oversee the principle we need to have a 1:1 ratio of default tabs being replaced and custom tabs working as a replacement.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 20 Mar 2019 09:25:02 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vault-customization-forum/custom-entity-hidedefaulttabviews/m-p/8670957#M5306</guid>
      <dc:creator>Markus.Koechl</dc:creator>
      <dc:date>2019-03-20T09:25:02Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Entity - HideDefaultTabViews</title>
      <link>https://forums.autodesk.com/t5/vault-customization-forum/custom-entity-hidedefaulttabviews/m-p/8673172#M5307</link>
      <description>&lt;P&gt;Hi Markus&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;That's fine. I can work around that&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Nick&lt;/P&gt;</description>
      <pubDate>Thu, 21 Mar 2019 00:04:10 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vault-customization-forum/custom-entity-hidedefaulttabviews/m-p/8673172#M5307</guid>
      <dc:creator>Nick_Hall</dc:creator>
      <dc:date>2019-03-21T00:04:10Z</dc:date>
    </item>
  </channel>
</rss>

