Skip Navigation LinksHome / Community & Support / Developer Productivity Tools Forums / ASP.NET > Docking > MoveTo In Firefox
RadControls for ASP.NET are no longer supported (see this page for reference). In case you have inquiries about the Telerik ASP.NET AJAX controls, post them in the pertinent ASP.NET AJAX forums.

Not answered MoveTo In Firefox

Feed from this thread
  • Ryan Grossman Intermediate avatar

    Posted on Oct 14, 2010 (permalink)

    doesnt matter what version of firefox, 3.5, 3.6 or beta 4, the following does nothing, but works in Chrome and IE?

                function OpenDock(dockableObject, command)
                {
    dockableObject.DockTo(RadDockingZoneTop);
                }

    I have a command button that bascially just moves the dock to a top zone.

  • Pero Pero admin's avatar

    Posted on Oct 19, 2010 (permalink)

    Hello Ryan,

    The latest version of RadDock for ASP.NET Classic  was released in the firs quarter of 2009. At that time FireFox 3.5 was not yet released as an official browser version, and that's why it is not supported by the latest version for RadDock for ASP.NET Classic.

    My recommendation is to upgrade your application to use the Ajax RadControls instead of the Classic. The Classic controls are not developed and supported anymore, and our resources are concentrated on developing and improving the RadControls for ASP.NET AJAX. We will do our best to help you upgrade your application to use the AJAX controls.

    Regards,
    Pero
    the Telerik team

    Check out Telerik Trainer, the state of the art learning tool for Telerik products.

  • Ryan Grossman Intermediate avatar

    Posted on Oct 20, 2010 (permalink)

    Well I dunno but I got it to work. Firefox seems to need reference to the ID first so I created an object and looked up the Zone ID. The commented line worked in IE and Chrome, but firefox needed the lines below it.

                function OpenDock(dockableObject, command)
                {
                    //dockableObject.DockTo(RadDockingZoneTop);
                    var obj = RadDock_GetDockingZone("<%=RadDockingZoneTop.ClientID%>")
                    dockableObject.DockTo(obj);
                }

Back to Top

Skip Navigation LinksHome / Community & Support / Developer Productivity Tools Forums / ASP.NET > Docking > MoveTo In Firefox