I have it:
<telerik:RadSplitter Skin="Inox" LiveResize="True" Orientation="Vertical" Width="100%"
ID="splitBody" runat="server" OnClientLoaded="Ajustar()">
And the javascript:
<script type="text/jscript">
function Ajustar() {
if (screen.height > 800) {
var splitter = $find("<%= splitBody.ClientID %>");
splitter.Resize(
null, screen.height - 350);
}
}
</script>
This work fine in IE, but doesn't work in firefox.....
Any Idea ?!?!?!
Thanks a lot