I have a Winform with an UltraToolbarsManager (toolbarsManager) control, if I change the UltraComboEditor customerCombo control value (selecting a value from the dropdownlist) and then select an option from the toolbar, the customerCombo_SelectionChanged event is not fired until I close the window. How to fire the event BEFORE toolbarsManager_ToolClick event? Thanks.
By the way, I'm using NetAdvantange for .NET version 12.2.20122.2006
Hello oktober,
I am checking about the progress of this issue. Please let me know If you need any further assistance on this.
Can you please post a small sample project with the issue then?
Boris, we are in different threads, my post is not related to Ramish's post.
Hi,
I wanted to know if you were able to solve your issue based on these suggestions or you still need help. Please let me know.
You could use the following code in order to achieve that:
private void ultraGrid1_InitializeLayout(object sender, InitializeLayoutEventArgs e)
{
e.Layout.Override.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
ValueList valueList = e.Layout.FilterOperatorsValueList;
foreach (ValueListItem item in valueList.ValueListItems)
FilterComparisionOperator filterOperator = (FilterComparisionOperator)item.DataValue;
if (FilterComparisionOperator.Contains == filterOperator)
item.Appearance.Image = SystemIcons.Asterisk.ToBitmap();
}
Please feel free to let me know if a question about our tool set comes up on your mind.