5

Hi am trying to tweak the vcenter web ui client interface , i tried creating a new extension point using web client SDK , Is there any way to change the web client UI without adding a extension point , I want to include a new input field in ui while provisioning the storage datastore and tweak in data service layer

ketan
  • 19,129
  • 42
  • 60
  • 98
user2463283
  • 212
  • 1
  • 4
  • 9
  • *"vcenter web ui client interface"* Is it written in Java? What is it (link to it)? – Andrew Thompson Jul 30 '13 at 04:40
  • Yes business logic layer in Java spring , they are using FLEX for UI Frinje framework https://my.vmware.com/web/vmware/details?downloadGroup=VSP510-WEBCLIENTSDK-510&productId=285 – user2463283 Jul 30 '13 at 12:04

2 Answers2

2

Having had a look at the Customizing the vSphere Client guide, I think what you intend to do could be possible by editing the Web UI plugin internals, and that is modifying its source code.

You should check the Orchestrator documentation to see if what you intend to do can be done without modifying the source code. For example, I read in this guide you can customize what the user can do by customizing the URL you use for accessing the Web Client.

Bigger
  • 1,807
  • 3
  • 18
  • 28
2

No, You can't edit existing pages without creating an extension points, to edit the existing pages like adding new columns to tables you can extend the list view section.

For more details refer the Extending vSphere Object List Views Section in vSphere web client SDK Programming Guide.

asvignesh
  • 787
  • 2
  • 6
  • 32