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
60
Upgraded to newest version and now docking wierd
posted

We just recently upgraded to the latest version of Infragistics (we were using a version from 2004 I think). I would add that I didn't write the original code so am not familiar with the Dock Manager so please excuse me. Previously, when a user chose to add notes to a product, the grid listing the products "hid" and the notes dialog took its place. Now, the notes dialog takes over both the grid area, plus the area below it and then some. You can't actually view all of the control because some of it goes off screen. Here is the code where this occurs:

ultraDockManager1.ControlPanes["gridView"].Closed = true;
ultraDockManager1.ControlPanes["notesView"].Closed = false;

System.Drawing.Size s = new System.Drawing.Size(300,400);

ultraDockManager1.ControlPanes["notesView"].FlyoutSize = s;
ultraDockManager1.ControlPanes["notesView"].Size = s;
ultraDockManager1.ControlPanes["notesView"].Settings.AllowClose = Infragistics.Win.DefaultableBoolean.False;

ultraDockManager1.ControlPanes["notesView"].Pin();
ultraDockManager1.ControlPanes["notesView"].Dock(DockSide.Top);

Any help would be greatly appreciated.

Thank you,

Susan

 

Parents
  • 44743
    posted

    It's tough to say what the problem is from the snippet you have posted. You can try to decrease the size's height before setting it on the Size property of the control pane. I would recommend submitting a sample to the support group where it can be more closely examined to determine the problem: http://ko.infragistics.com/gethelp.

Reply Children