Hi
Thank you for your answer. I need to call SelectTab function in dataBound of a listview. Once I load all the item in my listview I select the first and I need to show in the tabstrip all the subitems related and show the content of the first one.
$("#listview").kendoListView({
dataSource: dataSourceItem,
selectable: "single",
dataBound: onDataBound,
change: onLobChange,
template: kendo.template($("#template").html())
});
function onDataBound() {
var listView = $("#listview").data("kendoListView");
listView.select(listView.element.children().first());
SelecTab()
}
This shows the list of tabs but do not select the first one. Maye is related with the event or something else but I don't have a button here. Can you please help me?
Thank you