Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
245
Docking is not happening when i choose any item inside that
posted

Hi,


Docking is not happening when i choose any item inside that.

Inside the docking we are loading the control( ultragrid).if i choose any item from the grid and move the mouse away from the docking panel, then auto hide of docking functionality is not working..

Here is the code we aare used for docking.

_mainDockManager -> name of the UltraDockManager
_ctrlTEST -> Object of the control

Runtime Code
----------------
if (_ctrlTEST == null)
                {
                    /* Floating Dock Area Pane */
                    _dockAreaPaneTEST = new DockAreaPane(DockedLocation.DockedRight);
                    _dockAreaPaneTEST.ChildPaneStyle = ChildPaneStyle.VerticalSplit;
                    _dockAreaPaneTEST.Text = "";
                    _dockAreaPaneTEST.ShowChildPanes();
                  
                    /* Add To The Dock Manager */
                    _mainDockManager.DockAreas.Add(_dockAreaPaneTEST);

                    _ctrlTEST = new EmployeeTESTControl();
                    _ctrlTEST.IsLoading = true;
                    _ctrlTEST.Dock = DockStyle.Fill;
                    _ctrlTEST.OnWorkItemAssignmentClicked += new EmployeeTESTControl.OnWorkItemAssignmentHandler(OnWorkItemViewAssignment);
                    _ctrlTEST.Show();

                    /* Create Pane Which Holds Control */
                    _dockableControlPaneTEST = new DockableControlPane(_ctrlTEST);
                    _dockableControlPaneTEST.Text = "TEST";
                    _dockableControlPaneTEST.Key = "TESTTAB";
                    _dockableControlPaneTEST.FlyoutSize = new Size(950, -1);
                    _dockableControlPaneTEST.Pinned = false;
                    _dockableControlPaneTEST.Settings.AllowClose = DefaultableBoolean.False;
                   
                    _dockAreaPaneTEST.Panes.Add(_dockableControlPaneTEST);
                }

Please let me know how to resolve this issue. Its quite urgent.