Mutliple Tabs not showing for Tabbed Properties view [message #316923] |
Thu, 21 June 2007 11:38  |
Eclipse User |
|
|
|
Hi,
I've created a tabbed properties view with two tabs (Callbacks, and
Advanced for now). My editor shows both of these tabs when I have the
same input source, but when I add an different input source for the
second tab, only one tab is shown. I'm only using the
AdvancedPropertySection for both tabs in my tab view. Here's a partial
of my plugin.xml
<extension
point="org.eclipse.ui.views.properties.tabbed.propertyContributor ">
<propertyContributor
contributorId="editors.DataElemFormEditor"
>
<propertyCategory category="advanced"/>
<propertyCategory category="callbacks"/>
</propertyContributor>
</extension>
<extension
point="org.eclipse.ui.views.properties.tabbed.propertyTabs" >
<propertyTabs contributorId="editors.DataElemFormEditor">
<propertyTab
afterTab="SpecCallbacks"
category="advanced"
id="SpecAdvanced"
label="Advanced"/>
<propertyTab
category="callbacks"
id="SpecCallbacks"
label="Callbacks"/>
</propertyTabs>
</extension>
<extension
point="org.eclipse.ui.views.properties.tabbed.propertySections ">
<propertySections contributorId="editors.DataElemFormEditor">
<propertySection
afterSection="SpecCallbacks"
class=" org.eclipse.ui.views.properties.tabbed.AdvancedPropertySecti on "
id="AdvancedSection"
tab="SpecAdvanced">
<input type="EObjectPropertySheetContentProvider"/>
</propertySection>
<propertySection
class=" org.eclipse.ui.views.properties.tabbed.AdvancedPropertySecti on "
id="CallbacksSection"
tab="SpecCallbacks">
<input type="EObjectPropertySheetContentProvider2"/>
</propertySection>
</propertySections>
</extension>
</plugin>
|
|
|
|
|
Powered by
FUDForum. Page generated in 0.04765 seconds