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
40
Change text in UltraTextEditor in Cell
posted

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.