Home Home
  login

Gemini Community Support Site

This Gemini community support site can be used to find solutions to product issues. You can log in using Open Id, Google Profile and even Facebook. Feel free to ask a question or browse FAQs and documentation. Product tour videos are also available along with how-to videos demonstrating key Gemini capabilities.




Alter size of New Item>Component Affected listbox

usage
items

Hi,

Sorry if i've missed an obvious setting somehere, but is there a way to make the "Component Affected" listbox taller? Some of our projects have a LOT of components and it's hard to navigate the list with it the default size.

Any and all advice welcomed!

PeterJ
· 1
PeterJ
Replies (3)
helpful
0
not helpful
ANSWER

The only way to do that is by changing the markup of the Controls\IssueUC.ascx:

<asp:ListBox ID="cboComponents" runat="server" DataValueField="componentID" DataTextField="componentName" Width="300px" class="{required: true}" />

Add Rows="20":

<asp:ListBox ID="cboComponents" runat="server" DataValueField="componentID" DataTextField="componentName" Width="300px" class="{required: true}" Rows="20" />

Mark Wing
· 9108
Mark Wing
helpful
0
not helpful

Thats brilliant ! Thanks for that :-)

(Cheeky one: Any chance of it as a setting in v5 - save me re-editing if the file is replaced in future - web.config or front end, either would be great!)


PeterJ
· 1
PeterJ
helpful
0
not helpful

Yes, in v5 it is going to be different!


Mark Wing
· 9108
Mark Wing