stoevm's Posts

Hi Kumar, This might be a bug in our code base.  But to be able to debug it i will have to reproduce it. Can you reproduce this fast in some of the vSphere Client SDK samples, since it will ta... See more...
Hi Kumar, This might be a bug in our code base.  But to be able to debug it i will have to reproduce it. Can you reproduce this fast in some of the vSphere Client SDK samples, since it will take me some time ?  That is the offical SDK documentation and thanks for the documentation feedback, we are working on documentation improvements. Best, Martin
Hi all, Have you tested that the action ais working without the propertyConstration(i.e. if the filtering functionality is droped) ? Also can you share with us which documentation are you using... See more...
Hi all, Have you tested that the action ais working without the propertyConstration(i.e. if the filtering functionality is droped) ? Also can you share with us which documentation are you using ?  Best, Martin
Hi dharmeshj, The dialogSize is a legacy API targeted at plugins supporting vSphere Web Client (Flex). For HTML Plugins the <size> tag can be used where: the width 1 is the only supported v... See more...
Hi dharmeshj, The dialogSize is a legacy API targeted at plugins supporting vSphere Web Client (Flex). For HTML Plugins the <size> tag can be used where: the width 1 is the only supported value at the moment, height can be 1 (default) or 2 (portlet with doubled content area, excluding the title) Here is a working example of the extension point. <extension id="com.vmware.samples.vspherewssdk.datastore.summary">    <extendedPoint>vsphere.core.vm.summarySectionViews</extendedPoint>    <object>       <name>#{summaryView.title}</name>       <contentSpec>          <url>/ui/vspherewssdk/resources/vm-summary.html</url>          <size>             <width>1</width>             <height>2</height>          </size>       </contentSpec>    </object> </extension> Best, Martin
I saw that too while testing. Noted. We should fix this documentation bug. Thanks kumartade, Martin
Hi, The problem in the upper snippet  are the following lines: <comparator>EQUALS_ANY_OF</comparator> <comparableValue>     <String>VVOL,NFS,NFS41,NAS,VMFS</String> </comparableValue> <comp... See more...
Hi, The problem in the upper snippet  are the following lines: <comparator>EQUALS_ANY_OF</comparator> <comparableValue>     <String>VVOL,NFS,NFS41,NAS,VMFS</String> </comparableValue> <comparator>EQUALS_ANY_OF</comparator> <comparableValue>        <String>VVOL,NFS,NFS41,NAS,VMFS</String> </comparableValue> They should be written as  <comparator>EQUALS_ANY_OF</comparator> <comparableValue>         <Array>             <String>VVOL</String>          <String>NFS</String>          <String>NFS41</String>          <String>NAS</String>          <String>VMFS</String>     </Array> </comparableValue> Sorry for the delay. Martin
Hi airseej, Currently it is not possible to have one global view displey in H5 and not in Flex. Possible workaround is to have the view both on Flex and H5 and on Flex to show a page with an er... See more...
Hi airseej, Currently it is not possible to have one global view displey in H5 and not in Flex. Possible workaround is to have the view both on Flex and H5 and on Flex to show a page with an error of some sort (Example " View not Defined") This can be done using the Frontend JS APIs getClientInfo. Where you can see if the client is Flex or HTML and load the view accordingly. Best, Martin
Hi, This is a known issue on vSphere 6.5U2 and is not working, this problem was fixed in 6.7U1. Sorry for the misunderstanding. Martin
Hi, The code snipped that I sent is creating the following (menu/submenu) structure.  Please let me know if you had something different in mind. Martin
Hi, Unfortunately, we are not abe to provide the necessary information as this forum is dedicated to vSphere Client SDK - Plugins and APIs. Please try posting your question in the general forum... See more...
Hi, Unfortunately, we are not abe to provide the necessary information as this forum is dedicated to vSphere Client SDK - Plugins and APIs. Please try posting your question in the general forum. Best Regards, Martin
Hi dharmeshj, On which vCenter version is this problem occurring  ?  Cheers, Martin
Hi skodiya, I think this should work. <extension id="__packageName__.chassis.menu">    <extendedPoint>vsphere.core.menus.solutionMenus</extendedPoint>    <object>       <label>dummy1</label>... See more...
Hi skodiya, I think this should work. <extension id="__packageName__.chassis.menu">    <extendedPoint>vsphere.core.menus.solutionMenus</extendedPoint>    <object>       <label>dummy1</label>       <children>          <Array>             <com.vmware.actionsfw.ActionMenuItemSpec>                <type>separator</type>             </com.vmware.actionsfw.ActionMenuItemSpec>             <com.vmware.actionsfw.ActionMenuItemSpec>                <uid>sub-menu</uid>                <label>other-actions</label>                <children>                   <Array>                      <com.vmware.actionsfw.ActionMenuItemSpec>                         <type>action</type>                         <uid>__packageName__.otherAction</uid>                      </com.vmware.actionsfw.ActionMenuItemSpec>                   </Array>                </children>             </com.vmware.actionsfw.ActionMenuItemSpec>             <com.vmware.actionsfw.ActionMenuItemSpec>                <type>action</type>                <uid>com.vmware.samples.actionextensions.headlessAction3</uid>             </com.vmware.actionsfw.ActionMenuItemSpec>          </Array>       </children>    </object>    <metadata>       <objectType>sample:Chassis</objectType>    </metadata> </extension> I guess you have rea uids for the __package__Name__.otherAction Cheers, Martin
Hi Cathy, Thanks alot for the detailed answer, this was not a known issue. I have raised a bug for this issue and we will start working on it soon. Do you have a workaround for this problem ? ... See more...
Hi Cathy, Thanks alot for the detailed answer, this was not a known issue. I have raised a bug for this issue and we will start working on it soon. Do you have a workaround for this problem ? Martin, Thanks
Hi Cathy, This is not a known problem. Can you provide information about the environment setup. By my observation it seems that the label gets copied to the summary and name properties. You s... See more...
Hi Cathy, This is not a known problem. Can you provide information about the environment setup. By my observation it seems that the label gets copied to the summary and name properties. You said that after you use the Html Plugin to add privileges. Which Html Plugin ? Also what kind of operations does this Html Plugin do ?  Martin
Hi Ben, Which extension points are you trying to display based on the conditionalProperty and on which object ? You can also have a look at the wssdk-sample, there is an example with the powerO... See more...
Hi Ben, Which extension points are you trying to display based on the conditionalProperty and on which object ? You can also have a look at the wssdk-sample, there is an example with the powerOn and powerOff on a VirtualMachine. There shouldn't be any change, it should work also in the HTML client, so send me the version of the client you are using in order to investigate the problem. Cheers, Martin
Hi,  As mayurbhokase mentioned in the other post that he found a solution:  https://code.vmware.com/forums/4974#573581 May be helpful to others. Cheers, --Martin
Hi dhbtemp, I tryed to see if I can reproduce this problem, but could not achive what you have on the screen shots above. Can you try it out on another browser and see if the problem exists ? ... See more...
Hi dhbtemp, I tryed to see if I can reproduce this problem, but could not achive what you have on the screen shots above. Can you try it out on another browser and see if the problem exists ? Cheers, --Martin 
Hi rutvijdhotey, We are aware of this problem, to be correct the problem is that the ActionControllers in the java layer are expecting the parameters as url params, that is why the parameters ar... See more...
Hi rutvijdhotey, We are aware of this problem, to be correct the problem is that the ActionControllers in the java layer are expecting the parameters as url params, that is why the parameters are not send as post data (even though we are using post request to trigger actions from the ActionController). I don not think there is much you can do about changing the way data is send and received at the moment. We are working on solving this issue. Cheers --Martin
Hi SreeSindhuSruthi The "vise.navigator.nodespecs" extension looks good, I tried the example you gave to reproduce the problem but it is working as expected on my machine, as displayed bello... See more...
Hi SreeSindhuSruthi The "vise.navigator.nodespecs" extension looks good, I tried the example you gave to reproduce the problem but it is working as expected on my machine, as displayed bellow. Can you share more information about the problem? Cheers --Martin
Hi elavlee, We looked at the log you send and we will need more information. 1)Can you go to this url where <vcenter-ip> is the ip of your vCenter https://<vcenter-ip>/cm/mob/?moid=Service... See more...
Hi elavlee, We looked at the log you send and we will need more information. 1)Can you go to this url where <vcenter-ip> is the ip of your vCenter https://<vcenter-ip>/cm/mob/?moid=ServiceManager&method=Search 2)Enter the following search criteria: <searchCriteria>    <endPointType>       <typeId>com.vmware.cis.common.resourcebundle</typeId>    </endPointType> </searchCriteria> 3)Can you save this page and send it back to us. Thanks --Martin
Hi ChrisSmith2, Thank you for your feedback, The grouping of custom menu actions is a new feature for the HTML Client. It is done to align plug-in UX with the improved HTML Client UX. Moving... See more...
Hi ChrisSmith2, Thank you for your feedback, The grouping of custom menu actions is a new feature for the HTML Client. It is done to align plug-in UX with the improved HTML Client UX. Moving forward, we will focus only on SDK features for the HTML Client and don't target to introduce anything new in Flex. Cheers, --Martin