I have a KendoDropDownlist as Follows
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...
Go to the complete details ...