I want to change the text of an UltraTextEditor in Cell at runtime:
private void matchEditor_EditorButtonClick(object sender, Infragistics.Win.UltraWinEditors.EditorButtonEventArgs e)
{
UltraGridCell cell = (UltraGridCell)e.Context;
if (e.Button.Key == "NoMatch")
cell.Value = "";
matchEditor.Text = "";
matchEditor.Value = "";
}
Nothing works.
I'm figuring it out. It's unbound, but acting like it is bound.