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
544
Virtual wincombo - slow performance
posted

Hi everyone,

 In examples section i found an example of virtual wingrid. I applied same pattern to UltraCombo component. I've noticed there is huge penalty when control is displayed for the first time. (it reads all rows in data collection - i believe sorting should be turned off, as well as autosize option). 

ultraCombo1.DisplayLayout.LoadStyle = LoadStyle.LoadOnDemand;
ultraCombo1.DisplayLayout.Override.HeaderClickAction = HeaderClickAction.Select;
ultraCombo1.DisplayLayout.ScrollStyle =
ScrollStyle.Immediate;

 I could use a hint as to what causes combo box to iterate over all rows in collection.

TIA