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

Popular posts from this blog

Why does Ruby on Rails generate add a blank line to the end of a file? -

keyboard - Smiles and long press feature in Android -

node.js - Bad Request - node js ajax post -