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.
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;
}
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.