Click here to Skip to main content
15,886,529 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I have a KendoDropDownlist as Follows

JavaScript
for(ix=0;ix<list.length;ix++)
                   {
               data.push({ text: list[ix].UserName, value: list[ix].UserId});
                   }

               $("#UserList").kendoDropDownList({
                                             dataTextField: "text",
                                             dataValueField: "value",
                                             dataSource: data,
                                             change: getTimeSheetDetails
                                         });

Need to get it converted into KendoTabStrip, how could I do it? need help...
Posted

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900