There is a RadTabStrip control in my user home page and I want to add a new tab to it using Javascript. I am able to add a new tab but the issue is that the change is not persisting after some postback is made. Am I missing something to save the change? Please help.
I believe you are not using the trackChanges and commitChanges
client side methods. Client side changes are available on the server
side after postback but only changes to the tabs that occur between a
call to trackChanges and commitChanges persist after a postback.
Please have a look at the following code which works
fine at my end. I am adding tabs to RadTabStrip on clicking a RadButton
using client side code.