Kendo dropdown width -
hi can tell me how set width kendo dropdown? here code sample , not working. wrong in that?
$("#div1").kendodropdownlist({ datasource: items, datatextfield: "name", datavaluefield: "id", width : "250px" });
the kendodropdownlist not have property width it's configuration. see here: kendo docs
what can do, styling correct class. since know dropdown lies, can specify selector doesn't apply dropdowns.
#mycontainer .k-dropdown { width: 250px; }
Comments
Post a Comment