Hello,
I am trying to set some Portlets on my Summary view tab using html bridge (SDK 6.5u1). I tried to follow the instruction as mentioned in SDK doc. However, it is not working and Portlet is not visible on vSphere Client under Summary View. Also there is no error on web console..
My XML code is below :
<!-- summary view. -->
<extensionid="com.company.vcplugin.fi.SummaryView">
<extendedPoint>com.company.vcplugin.fi.summaryViews</extendedPoint>
<object>
<name>FISummary</name>
<componentClassclassName="com.vmware.vsphere.client.htmlbridge.HtmlView">
<object>
<root>
<url>/vsphere-client/html/index.html?view=fi-summary</url>
</root>
</object>
</componentClass>
</object>
</extension>
<!-- summary view section. -->
<extensionid="com.company.vcplugin.fi.Summary2">
<extendedPoint>>vsphere.core.fi.summarySectionViews.html</extendedPoint>
<object>
<name>Status</name>
<componentClassclassName="com.vmware.vsphere.client.htmlbridge.HtmlView">
<object>
<root>
<url>/vsphere-client/html/index.html?view=status-details-section-view</url>
<dialogTitle>WSSDK Summary Sample</dialogTitle>
<dialogSize>440,400</dialogSize>
</root>
</object>
</componentClass>
</object>
</extension>
I have also tried with <namespace>.summarySectionViews.html as extendedPoint but that is also not working.
Can someone please help here?