Hello,
After upgrading to lastest version (2016Q1) the dropdownlists in my application using custimized templates stopped working with the following error: The 'optionLabel' option is not valid due to missing fields.
my code is similar to:
$(
"#mylist"
).kendoDropDownList({
optionLabel:
"Select ..."
,
autoBind:
true
,
dataSource: recordDataSource,
dataTextField:
"recordId"
,
dataValueField:
"recordId"
,
filter :
"contains"
,
template:
'#: firstName # #: lastName #'
,
valueTemplate:
'#: firstName # #: lastName #'
});
Datasoruce is made by 3 columns recordId, firstName, lastName