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
450
How to override default popup of ultracomboeditor with a custom usercontrol
posted

I am creating a custom multi-select & multi-column combo editor and I want to use a usercontrol instead of the default popup control of ultracomboeditor.

I am using Infragistics v11.2 CLR4.

Parents
  • 21795
    Offline posted

    Hello Priyam,

    Thank you for posting in our forum.

    You may show your user control in BeforeDropDown event of UltraComboEditor and then cancel the event. This will suppress the showing of the default dropdown. You can use code like this:

    private void UltraComboEditor_BeforeDropDown(object sender, CancelEventArgs e)

    {

        // Add your custom logic here to show your user control

     

        e.Cancel = true;

    }

    Please let me know if you have any additional questions.

    Thank you for using Infragistics Controls.

Reply Children