[Solved] Menu selection opens a new "window"

1 Answer 6 Views
Drawer TabStrip
Taras
Top achievements
Rank 3
Iron
Iron
Veteran
Taras asked on 05 Aug 2026, 04:51 PM

I'm trying to replicate what I believe is a tabstrip menu display (not the best description).

I've attached a sample of what I'm trying to do.  Basically, when a menu item is selected, a new windows in the viewport is opened and the page is displayed there.  Multiple pages can be opened when selecting menu items. 

Clicking the X on the left would close all open windows.  Home would be always displayed.

Is this done with Tabstrip or some other component?

1 Answer, 1 is accepted

Sort by
0
Dimo
Telerik team
answered on 06 Aug 2026, 11:34 AM

Hello Taras,

The following components may be suitable to implement the desired behavior:

It's important to note that neither option is a perfect match and depending on the desired result, any choice may require workarounds. That's why I advise to keep things simple, even if this means to use custom rendering that does not rely on our components at all.

<TelerikButtonGroup>
    <ButtonGroupButton OnClick="@ShowWindow">
        Button Text
        <span @onclick:stopPropagation>
            <TelerikButton OnClick="@HideWindow" Icon="@SvgIcon.X" />
        </span>
    </ButtonGroupButton>
</TelerikButtonGroup>

 

Regards,
Dimo
Progress Telerik

Love the Telerik and Kendo UI products and believe more people should try them? Invite a fellow developer to become a Progress customer and each of you can get a $50 Amazon gift voucher.

Tags
Drawer TabStrip
Asked by
Taras
Top achievements
Rank 3
Iron
Iron
Veteran
Answers by
Dimo
Telerik team
Share this question
or