VMware Cloud Community
ima_be
Contributor
Contributor

Can i Create a new Portlet in the Dashboard ?

Hi,
I would like to create a new portlet, I need to see the News Exchange in the dashboard
So I'll develop an application that provides me this information (I think I must do it in groovy)
however i would like to know before starting developping ,if it 's possible to add a new portlet and if you know some ways to do this?
Thank you

Imane
0 Kudos
2 Replies
ima_be
Contributor
Contributor

nobody knows!!??

Message was edited by: ima_be
0 Kudos
vManav
Enthusiast
Enthusiast

For adding a new portlet, you need to add the below extension in plugin.xml file :

<extension id="<any user defined id>">

      <extendedPoint>vsphere.core.host.summarySectionViews</extendedPoint>

      <object>

         <name><user definded name></name>

         <componentClass className="<user defined view class>"/>

      </object>

   </extension>

0 Kudos