Is there any way to decoratively define the List width in the HTML. I know I can do it
var autoComplete = $("#autoComplete").data("kendoAutoComplete");
// set width of the drop-down list
autoComplete.list.width(400);
but I want to do it in HTML only. I have already tried:
data-list-width="400"
I got the answer from telerik today:
Currently, the width of the popup element can be set only programatically.