Tubby Posted November 15 Report Share Posted November 15 Autocomplete is a pain in the bikini bottom when inspecting because of how the droplist disappears whenever you try to inspect its element. However, after digging deep into Styles, I found out that there is a class in Source that can be used to modify its height so it doesn't expand to 10 options(default). The class is "cbFormAutoCompleteList" and there is no built in function in Styles to add or reduce its height so you'll need to add one. You can also add this to the Header of your DataPage if you only want to apply it on a specific form only: <style> .cbFormAutoCompleteList { overflow-y: scroll !important; /*overflow is optional if you still want to allow your users to see all the options available*/ height: 93px !important; } </style> Hope this helps anyone trying to edit their autocomplete field! SushiPizza 1 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.