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

[Solved] Add Buttons to Tab Strip Bar

2 Answers 251 Views
TabStrip
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
Justin Stuparitz
Top achievements
Rank 1
Justin Stuparitz asked on 09 Dec 2009, 04:00 PM
Is there a way to add buttons or any html content for that matter in the top level bar of the tabstrip?  I'd like to have a couple tabs and on the far right of the bar put Save and Delete buttons.  There is so much UI real estate there I don't want to waste it.

I guess this could apply to the grid as well for those of you who might want to do that also.

thanks,
Justin

2 Answers, 1 is accepted

Sort by
0
Alex Gyoshev
Telerik team
answered on 10 Dec 2009, 09:21 AM
Hello Justin,

Such UIs are quite custom, so it is unlikely that we will support them out-of-the-box with the HTML helpers. This, however, shouldn't stop you from adding more markup to the page - either by Javascript or by adding it to the extensions' source code.

All the best,
Alex
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
0
Justin Stuparitz
Top achievements
Rank 1
answered on 10 Dec 2009, 02:27 PM
Thanks Alex.  Yea, that's really specific type stuff.

I was able to get want I wanted with some simple jQuery

 

 
 
$().ready(  
function(){   
$(  
'#UserTab').prepend('<input type="submit" value="Save" style="float: right;clear:both" class="Button" title="Save" />');   
});  
 

 

 

Tags
TabStrip
Asked by
Justin Stuparitz
Top achievements
Rank 1
Answers by
Alex Gyoshev
Telerik team
Justin Stuparitz
Top achievements
Rank 1
Share this question
or