Posted
on Jan 31, 2012
(permalink)
Well, I found the problem. Thanks to Telerik Team. My TabStrip is Inside a Div that have the display:none property because this div just show up until the user login into the system and because of this when i call the tabstrip.repaint after the ajaxrequest the tabstrip fails but if i take off the tabstrip it works fine. This really doesn´t solve my problem, I mean, I need to hide the div until the user login into the system. Marin of the Telerik Team gave me a suggestion:
"
If you still want to keep using it that way I can suggest adding a small timeout when calling the repaint() method, so that the browser has had time to recalculate the display of the rest of the elements:
setTimeout(function ()
{
the rest of the functionality of the openNewWindow() function
}, 0);"
So I'm going to test it and tell you later.
Thanks.