Hi
I need to create a very specific set of functionalities for a ComboBox, and from browsing the demos/apis/overview, I havn't been able to determine if it is possible. Therefore; this post, since I'm hoping someone with more experience using Kendo UI and the ComboBox widget, could answer the question.
The ComboBox has the following requirements:
- UI-wise it will be two input field, where the user can write numbers in one, and letters in the other. Each of these input fields will be a separate ComboBox but they will share the Datasource.
- When no inputs have been provided, the options in the ComboBox should be empty.
- Whenever something is typed in one of the input fields, the Datasource should perform a fetch for new data, using the input as parameters (send via the url and used as filters on the server).
- The Datasource should not fetch data if the input characters are less than 3.
- Upon selecting an option in one of the ComboBox's the other should be updated with the selected value as well (One showing the options number, the other, the options name)
Is this possible? Basically I'm hoping to not download all of the options available on the server, and limit the fetching for when useful filtering values are available.
Any hints/examples would be helpful.
Would another widget be more suitable for this task?
(I'm guessing I have to setup a Datasource with Virtualization, but I havn't been able to get that going yet, so don't want to spend any more time on it, if it is the wrong direction I'm heading).