Hi Nguyen Huu Hanh Lam,
There’s still no selectValue method, but you can use the code below to find an item by value and then to select it.
// get all items.var items = $("#jqxWidget").jqxDropDownList('getItems'); // find the index by searching for an item with specific value.var indexToSelect = -1;$.each(items, function (index) { if (this.value == "Blido Comidas preparadas") { indexToSelect = index; return false; }});$("#jqxWidget").jqxDropDownList({ selectedIndex: indexToSelect });
Best Regards,
Peter Stoev
jQWidgets Team
http://www.jqwidgets.com