This is a migrated thread and some comments may be shown as answers.

Having Tab Strip act wizard like?

1 Answer 127 Views
TabStrip
This is a migrated thread and some comments may be shown as answers.
Peter
Top achievements
Rank 1
Peter asked on 31 Jan 2013, 03:18 PM
Is it possible to have tabs not show in tab strip so it can behave wizard like?

1 Answer, 1 is accepted

Sort by
0
Alexander Valchev
Telerik team
answered on 04 Feb 2013, 02:06 PM
Hi Peter,

The TapStrip widget does not support such functionality out of the box. If you want to hide the tabs you may set display: none to .k-tabstrip-items ul element.
#tabstripID ul.k-tabstrip-items {
    display: none;
}

Alternatively you may use jQuery:
$("#tabstripID ul.k-tabstrip-items").hide();
//or
$("#tabstripID ul.k-tabstrip-items").css({display: "none"});

I hope this will help.

Kind regards,
Alexander Valchev
the Telerik team
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
Tags
TabStrip
Asked by
Peter
Top achievements
Rank 1
Answers by
Alexander Valchev
Telerik team
Share this question
or