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

Disabling Tabstrip Makes Text Disappear

1 Answer 60 Views
TabStrip
This is a migrated thread and some comments may be shown as answers.
Bob Gibilaro
Top achievements
Rank 1
Bob Gibilaro asked on 27 Jan 2009, 04:32 PM
Disabling a tabstrip using this code

rtsAddressBook.Enabled = False

causes the text on the current tab to disappear.  Is this a known bug?  Is there a way around this?

 

Thanks

 

 

1 Answer, 1 is accepted

Sort by
0
Shinu
Top achievements
Rank 2
answered on 28 Jan 2009, 07:57 AM
Hi Bob,

I tried disabling the Tabstrip on the client side as well as server side and text is not getting disappeared. I am using the latest version of RadControls(2008.3.1314.20).  Here is the code which I tried:

CS:
 RadTabStrip1.Enabled = false

You can also disable the text on the client side.

JS:
<script type="text/javascript" > 
    
   function DisableTabStrip() 
   { 
    var tabStrip=$find('<%=RadTabStrip1.ClientID %>'); 
    tabStrip.disable(); 
     
   } 
</script> 


Thanks
Shinu

Tags
TabStrip
Asked by
Bob Gibilaro
Top achievements
Rank 1
Answers by
Shinu
Top achievements
Rank 2
Share this question
or