Is it possible to create a Custom Menu in TabStrip like the one in Menu with a Drop down and have Close Icon and a Maximize icon to close and maximize a TabStrip's Content ?
I've been developing a client api for the Telerik Extensions for MVC and one of the functions that I have created is a removeTab() function. I have updated a sample application to show how a button can be added to the top right corner of the tab that, when clicked, will call the removeTab() function to remove the tab from the tabstrip. I've attached the sample project.
To run the sample application, you will need to add the Telerik "Content" and "Scripts" folders back into the project for the version of Telerik Extensions that you are using. Run the application and in the "Samples List" click on the "Add and Remove Tabs" link under "TabStrip".
How it works:
1. I added an image to the project at: /Content/tab-close.gif
2. I added a style called "a.tab-close" to /Content/Site.css
3. In the /Views/TabStrip/AddRemoveTabs.cshtml, I added the "OnLoad" client event to the TabStrip to add an anchor element with the tab-close css class that, when clicked, will call the closeTab() function. The closeTab() function calls the removeTab() function and removes the tab.