Ticket #4597 (closed enhancement: fixed)
[patch][CLI] A combobox that works with huge server data (like in dojo 0.4 the dataUrl)
| Reported by: | wolfram | Owned by: | jaredj |
|---|---|---|---|
| Priority: | normal | Milestone: | |
| Component: | DojoX Data | Version: | 0.9 |
| Severity: | normal | Keywords: | Combobox |
| Cc: | jorvis |
Description
Many people already requested making the combobox work like in dojo 0.4 with the dataUrl. This is a store (first draft) for a dojo.data class that makes it possible loading data into a combobox partially upon typing a letter.
Using this class you can do the following:
<div dojoType="dojox.data.QueryReadStore" jsId="store" url="/live-search/${searchString}/"></div>
<input dojoType="dijit.form.ComboBox" store="store" />
${searchString} gets replaced by the string entered into the combobox input field when typed, each letter triggers a server request.
Attachments
Change History
Note: See
TracTickets for help on using
tickets.