Guest User

Untitled

a guest
May 20th, 2018
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. $('#combo2').kendoComboBox({
  2. dataTextField: "text",
  3. dataValueField: "value",
  4. dataSource: [
  5. { text: "Cotton", value: "1" },
  6. { text: "Polyester", value: "2" },
  7. { text: "Cotton/Polyester", value: "3" },
  8. { text: "Rib Knit", value: "4" }
  9. ],
  10. filter: "contains",
  11. suggest: true,
  12. index: 3
  13. });
  14.  
  15. <kendo-combobox id="combo2"/>
  16. </div>
Add Comment
Please, Sign In to add comment