ComboBox KeyDown Event
Thomas Mandlmeier
Hi there,why is there no ComboBox.AddHandler_KeyDown? If i have a look at the SBO Event Monitor, the event is shown correct.
Is there something wrong? Or is it just not supported??
Best Regards
Thomas
Paolo Manfrin
Hi Thomas, this is not implemented. I will add it as DRQ.Probably you can use this event:
[CODE]
cbx.AddHandler_Select(SwissAddonFramework.UI.Components.ModeComponent.FormModes.ALL, null, Selected_Branch);
private void Selected_Branch(SwissAddonFramework.UI.EventHandling.ItemEvents.ComboSelected eventVal)
{
...
}
[/CODE]
Paul Witmond
Hi Thomas,As a workaround we used :
ComboBox.GetFromUID(ev.Form, "10000329").AddHandler_Click (ModeComponent.FormModes.ALL, null,CmbSel);
HTH
Regards,
Paul
0
Please sign in to leave a comment.
Comments
0 comments