My OVF file creates a drop down list for the user to select which type of VM to deploy.
The window that vSphere "Deploy OVF template" wizard uses to display this list is too narrow to display the whole string. Actually the English string is ok, but the translated strings are too long for the window.
Q1: Can the size of the drop down list window be controlled?
Q2: Can the font/font size be controlled?
Here is the section of my OVF file that creates the drop down list
This is in the <ProductSection> section of the OVF file
<Property ovf:key="ciscoOrion_vmtype" ovf:type="string">
<Label>VM Type</Label>
<Description>Type of VM should follow ovf:id</Description>
<Value ovf:configuration="50_Users_System" ovf:value="50_Users_System "/>
<Value ovf:configuration="50_Users_Internet_Reverse_Proxy" ovf:value="50_Users_Internet_Reverse_Proxy"/>
<Value ovf:configuration="250_Users_Admin" ovf:value="250_Users_Admin "/>
<Value ovf:configuration="250_Users_Media" ovf:value="250_Users_Media "/>
<Value ovf:configuration="250_Users_Internet_Reverse_Proxy" ovf:value="250_Users_Internet_Reverse_Proxy"/>
<Value ovf:configuration="800_Users_Media" ovf:value="800_Users_Media"/>
<Value ovf:configuration="800_Users_Admin" ovf:value="800_Users_Admin"/>
<Value ovf:configuration="800_Users_Internet_Reverse_Proxy" ovf:value="800_Users_Internet_Reverse_Proxy"/>
<Value ovf:configuration="2000_Users_Media" ovf:value="2000_Users_Media"/>
<Value ovf:configuration="2000_Users_Admin" ovf:value="2000_Users_Admin"/>
<Value ovf:configuration="2000_Users_Web" ovf:value="2000_Users_Web"/>
<Value ovf:configuration="2000_Users_Internet_Reverse_Proxy" ovf:value="2000_Users_Internet_Reverse_Proxy"/>
</Property>
</ProductSection>