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
320
Is it possible to bind UltraCombo.Value to List<T> where T is not only object
posted

Hi

I have ultraCombo with .CheckedListSettings.EditorValueSource is set to CheckedRows and its Value property is bound to business object property of type List<object>.

Everythings seems to work fine but if I replace type of this property to e.g. List<int> then writing current value from control to property fails (though type of value member is int).

Is it possible to somehow allow such binding to use all advantages of value based types as a type parameter for List<>?

Thanks