Auto-expand comboboxes

Does anyone have some js snippet on how to auto-expand comboboxes (like status, support group etc). At the moment we have to double-click/click the expander, I would like to have it unboxes at default.
Thank you
Best Answer
-
Tom_Hendricks Customer Super IT Monkey ✭✭✭✭✭
Something like this:var fldAssignee = $("input[name='AssignedWorkItem']").data("kendoAutoComplete");
// Force the list open fldAssignee.search();
These controls are Telerik Kendo UI widgets, so their documentation is particularly helpful when trying to figure out how to do something like this.5
Answers
These controls are Telerik Kendo UI widgets, so their documentation is particularly helpful when trying to figure out how to do something like this.