Hi,
When loading a large dataset the WebDBLookupComboBox control is aligned to the bottom of the form.
Is it possible to set a drop down count (limit rows) for a WebDBLookupComboBox?
Hi,
When loading a large dataset the WebDBLookupComboBox control is aligned to the bottom of the form.
Is it possible to set a drop down count (limit rows) for a WebDBLookupComboBox?
Unfortunately, at this moment not.
What is used internally is a HTML SELECT element with size=1 that shows the items as a dropdown list.
Unfortunately, HTML or CSS does not allow further control of the height (or other things such as style) of the dropdown.
The only alternative is to do a custom implementation of the dropdown, something we did with TWeb(DB)EditAutoComplete. There we display the dropdown as custom generated HTML elements in the dropdown. Of course, doing this for TWebDBLookupComboBox would mean a complete redesign.
Thank you for the explanation. I will try a different approach then.