I am working up on setting up some portlets for my plugin using the HTML bridge. When my portlet is displayed, the link inside the portlet that will bring up the dialog with my real contents has the text portletLinkLabel.
According to the documentation that came as part of the SDK: <span style=" ">The link generated in the portlet area reads </span><i style=" ">Click to see </i>
It doesn't seem to be following this, has this behavior changed and is there a markup that sets the text used for the link?
Below is what I have in my plugin.xml file:
<extension id="com.mycompany.vcenterWebClientui.datastore.summary">
<extendedPoint>vsphere.core.datastore.summarySectionViews</extendedPoint>
<object>
<name>My Datastore Summary</name>
<componentClass className="com.vmware.vsphere.client.htmlbridge.HtmlView">
<object>
<root>
<url>/vsphere-client/vcenterWebClient-ui/resources/myDatastorePortletSummary.html</url>
<dialogTitle>My Datastore Summary</dialogTitle>
<dialogSize>440,400</dialogSize>
</root>
</object>
</componentClass>
</object>
</extension>