So well I mean they DO open...for a fraction of a second, then the close animation kicks in. Data is populated in the comobs after an autocomplete above. It doesnt happen with every search I do, but most :/
Seen anything like this before (didn't happen in beta2)
And if I do something like this
It looks like they expand about 30%, animate back up to 0, then the dropdown expands properly
Seen anything like this before (didn't happen in beta2)
var
autoCompleteCombo = $(
"#food-box"
).kendoComboBox({
autoBind:
false
,
minLength: 3,
filter:
"contains"
,
suggest:
false
,
dataTextField:
"Long_Desc"
,
//JSON property name to use
dataValueField:
"NDB_No"
,
//JSON property name to use
dataSource: autoCompleteDS,
change:
function
(e) {
if
(
this
._current) {
var
item =
this
.dataSource.view()[
this
._current.index()];
currentItem = item;
//store the selected item
//Get the weight navproperty
weightDS.transport.options.read.url = item.usda_WEIGHT.__deferred.uri;
weightDS.fetch();
fromCombo.enable();
toCombo.enable();
//fromCombo.open();
}
}
}).data(
"kendoComboBox"
);
//Hide the arrow om the combo
autoCompleteCombo._arrow.hide()
.closest(
".k-dropdown-wrap"
)
.addClass(
"combo-to-autocomplete"
);
And if I do something like this
fromCombo.enable();
toCombo.enable();
fromCombo.open();
toCombo.open();
It looks like they expand about 30%, animate back up to 0, then the dropdown expands properly