I am using wicket DropDownChoice and my list is very long, is there a way that when i click the drop down list and then click on a character the list will jump to the first select that start with the same character
wicket DropDownChoice jump to certain selection
572 Views Asked by Ggdw At
1
There are 1 best solutions below
Related Questions in JAVA
- Add image to JCheckBoxMenuItem
- How to access invisible Unordered List element with Selenium WebDriver using Java
- Inheritance in Java, apparent type vs actual type
- Java catch the ball Game
- Access objects variable & method by name
- GridBagLayout is displaying JTextField and JTextArea as short, vertical lines
- Perform a task each interval
- Compound classes stored in an array are not accessible in selenium java
- How to avoid concurrent access to a resource?
- Why does processing goes slower on implementing try catch block in java?
- Redirect inside java interceptor
- Push toolbar content below statusbar
- Animation in Java on top of JPanel
- JPA - How to query with a LIKE operator in combination with an AttributeConverter
- Java Assign a Value to an array cell
Related Questions in WICKET
- Updating the message contents for a MessageDialog wicket
- Wicket - AjaxEventBehavior not rendered properly
- disable/enable text boxes by using wicket
- How to setHeader in ResourceStreamRequestHandler#configure(..) (migration issue)
- How to get all FeedbackMessages from components inside specific form?
- I would like to implement pagination in Wicket
- IE10 - Atmosphere Unsubscribed when AJAX Call Made
- How to change all component values of parent panel on change of child panel in wicket
- Wicket AutoCompleteTextField (both kinds) have bugs when in ModalWindows
- FileUploadField constructor in wicket 6
- Wicket Modal Window, any way to close it if i click outside of the modal window?
- Wicket: Get Browser Information
- Wicket AuthenticatedWebApplication do not allow to be Signed In from different accounts on the same computer
- How do I get to the raw http headers (for basic authentication) with Wicket (Java)?
- Wildfly 8.2 on Openshift: plain text response instead of html on page reload
Related Questions in DROPDOWNCHOICE
- Symfony2 - ChoiceType - get choice list from JSON without JS
- How to get selected value in Wicket DropDownChoice?
- how to do different things with each droplist chioce? HTML
- Show two fields in Wicket DropDownChoice via ChoiceRenderer
- Problems od special characters with sfWidgetFormDoctrineChoice in Symfony
- Filtering a ListView in wicket using 2 drop down boxes
- How to add validation for Dropdownchoice and Checkbox in Wicket java
- How to convert the CheckGroup<> to FormComponent for Validation
- Autocomplete DropDownChoice
- Wicket DropDownChoice Integer
- wicket:how to get dropdownlist selected value in ListView
- Symfony2 choice widget ordering of preferred_choices
- Wicket - DropDownChoice from Enum to Primitive
- wicket DropDownChoice jump to certain selection
- Wicket AutoCompleteTextField resizing modal window issue
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
I know this is not the exact solution to your problem, but it will solve your functional issue. If you have very long select list, I would recommend loading it progressively with a search field via Ajax.
wicket-select2 is such a (wonderful) wicket component, integrating the select2 library into wicket to provide Ajax filtering, custom rendering, etc. Although the current integration doesn't offer a way to simply add the select2 behaviour to a static non ajax DropDownChoice, it's relatively easy to do by using wicket-select2's classes as a base. For the wicket-select2 integration all you'll need is to use
Select2Choice(orSelect2MultiChoicefor multiple selects) to which you pass a simpleTextChoiceProviderAfter you start using such a component, you don't really want to go back to plain old selects, in particular if you have long lists of choices.
Note : using 1.5.8 (and previously 1.4.x), the old selects in my application display the behaviour you are looking for, e.g. standard html behaviour. However from what I understood you don't use a
<select>tag in your markup for your DropDownChoice: what are you using then (it's likely this is the cause of your issue).