Hi ,
I am using sdk-6.0.0.2559419 for developing webclient plugin which works on both flex/html5.
I have a use case where I want to invoke an action from the context menu of datastore and after that operation completes, I want to perform another action(navigation).
for which I need to delegate the action to a script using WEB_PLATFORM.sendNavigationRequest.
On UI i do not want to display the HTML page so i kept the size of HTML as 0,0 <dialogSize>0,0</dialogSize> in plugin xml.
It works fine in Flex however in HTML5 it is not working and displaying default size html
<extendedPoint>vise.actions.sets</extendedPoint>
<object>
<actions>
<com.vmware.actionsfw.ActionSpec>
<uid>chassis.navigate</uid>
<label>Navigate to chassis</label>
<icon>#{chasisicon}</icon>
<delegate>
<className>com.vmware.vsphere.client.htmlbridge.HtmlActionDelegate</className>
<object><root>
<!-- execute the action on client-side (html view in a modal dialog) -->
<actionUrl>/vsphere-client/chassisui/resources/my-navigate.html</actionUrl>
<dialogTitle>Datastore Test</dialogTitle>
<dialogSize>0,0</dialogSize>
<dialogIcon>#{chassisicon}</dialogIcon>
</root></object>
</delegate>
</com.vmware.actionsfw.ActionSpec>