I am using dock control of infragistics and facing performance issue in slideout. Is there any possibility so that this slideout behaviour could be overridden and we can just show and hide without flyout.
ShowFlyOutImmidiatly cannot be called directly but I don't think it would speed things up too much if you were able to call it directly anyway. Most of the other code which leads up to that call is just gathering information and firing an event. I think most of the slowdown is in the layout and drawing of the pane's control. However, it is possible there is an unnecessary performance bottleneck in the code which shows the flyout. You can submit the issue to the support group to be investigated: http://es.infragistics.com/gethelp.
I see what you mean.
Can you tell what performance issues you are facing when calling Flyout so that you want to omit it?
I dont think that ShowFlyOutImmediately can be called directly. If you dont want the sliding to show, maybe you should consider unpinning the tab instead of showing flyout. (In ultraDockManager__BeforeShowFlyout e.Cancel = true; e.Pane.Pinned = true; )
Thank you for reply but this option is already false. when mouse is over the panel then to display the panel it is calling a lots of methods in turn i.e. Flyout, ShowFlyoutPane, ShowFlyOutImmidiatly.....etc. Is there any way to call directly ShowFlyOutImmidiatly.