Sunday, March 11, 2012

TabContainer Visibility

Hi,

This is because the style of the Tabcontainer is set to visible explicitly. So, it doesn't inherit from its parent control.

You need to set it to hidden too. Like this:

$get('mainDiv').style.visibility = 'hidden';
$get('TabContainer1').style.visibility = 'hidden';

Hope this helps.

No comments:

Post a Comment