Value lists wrong display

Hi

We notice that the value lists are not displayed correctly (also seen in Smart Client). One problem is, that the width is too small. The other is, that the height of the null value is too small. Please see attached pictures.

When will this be fixed?

System:
Servoy 8.1.0 - build 3027,
Mac OS X 10.11.6,
Java 1.8.0_66.

Kind regards

popupWrongHeight.png

Hi,

You can report the issue in our support system at http://support.servoy.com. You can login into our support system using your Servoy credentials.

The image you have included are from the NGClient solution ? Are these typeahead fields ?
In this case you can edit the look and feel of the dropdown using the solution’s stylesheet. The stylesheet is a solution/module property; you can use any .css file from your solution’s media folder. You can add the following rules to your .css file:

/* All options, including empty options, will have a min height of 26px */
.dropdown-menu > li > a {
min-height: 26px;
}

/* You can set min width */
.dropdown-menu {
min-width : 200px;
}

See more about styling in NG Client at https://wiki.servoy.com/display/DOCS/St … e+NGClient

Hi

Thank you for the response.
Yes, the images are from an NG Client.
One field is a type ahead, the other is a text field. They behave the same, as far as I noticed.
I’ll try the styling.

Best regards

… and please consider filing a case, because that doesn’t really look right in the first place.

Done

The css with min-width and min-height worked perfect! Thanks a lot.