Is there a Kendo UI Jquery component that I can use which will allow me to have a multiselect (preferably a dropdowntreelist) with a quantity? Here is an example of what I mean:
Unfortunately, there is no single Kendo UI jQuery widget that does multiselect + quantity out of the box, but you can build it by combining the MultiSelect and NumericTextBox.
The MultiSelect handles item selection with autoClose: false so the dropdown stays open for picking multiple items. On each change event, a quantity panel renders below with a NumericTextBox for every selected item. Quantities are tracked in a simple object and persist when items are added or removed. The summary text updates automatically in the format "3 x Apple, 2 x Pineapple".
Below you can see the sample implementation and you can also test it in this Dojo:
<labelfor="multiselect">Products</label><selectid="multiselect"></select><divid="quantity-panel"></div><labelfor="order-summary">Generated text</label><inputid="order-summary"class="summary-input"type="text"readonlyplaceholder="Selections will appear here" />