I set the property just like ultragrid.displaylayout.bands[0].columns["productId"].editorcontrol = ultracombo. But clicking the right button in combo Can't excute the button's clicking event fuction. How can I resolve this problem? The right button is created in fuction oncreatecontrol of the combo. Thanks.
When the EditorButton that appears within the cell is clicked, the UltraCombo's 'EditorButtonClick' event is fired, rather than the button's Click event.
Example:this.ultraCombo.ButtonsRight.Add ( button );this.ultraCombo.EditorButtonClick += new EditorButtonEventHandler(ultraCombo_EditorButtonClick);
void ultraCombo_EditorButtonClick(object sender, EditorButtonEventArgs e){}
HI,
Brian Fallon, Thanks.