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
275
Can’t CloseUp Event with the DropDownEditorButton.
posted

Hello

Can’t  CloseUp Event with the DropDownEditorButton.

I have a populate ultraGrid column with a UserControl, I am using a ultraTextEditor1  and a DropDownEditorButton to halp me to get the punctuality of a dropdown to my control in the grid column.

-----------------------------------------------------------------------------------------------------------||

The cod in the grid column:

  DropDownEditorButton b = new DropDownEditorButton(); //Dropdown Editor Button

                        b.Control = _workingHoursPicker; //The Multi Select "Combo" with the userCuntrol

                      

                        if (_workingHoursPicker.Owner == null)

                            _workingHoursPicker.Owner = b;

                      this.ultraTextEditor1.ButtonsRight.Add(b); //add the button to the editor control

        

-----------------------------------------------------------------------------------------------------------||

Problem:

The cod in my UserControl;

 

private void saveToolStripButton_Click(object sender, EventArgs e)

        {

            _owner.CloseUp();  -- not responding

        }

-----------------------------------------------------------------------------------------------------------||

 

Regards:

Yaniv l

 

Parents Reply Children