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
278
EditorControl. TextChanged event don't fire
posted

Hello,

I add in InitializeRow new UltraCombo for each cells in Column. And i want to know what text user write into this cell. But EditorControl.TextChanged not fire. And if i create so code:

UltraCombo uc = new UltraCombo();

uc.TextChange = new EventHandler(UC_TextChanged);

e.Row.Cells["acName"].EditorControl = uc; 

TextChanged event not fire too.

I read your posts, where you write than it is not good way.  But i have 350 000 items in this combo. 

I want to change the DataSource in UltraCombo  according to the entered text (load, for example, 1000 items, which started from user text).

Could you help me? Thanks.

Parents
  • 69832
    Suggested Answer
    Offline posted

    The reason the TextChanged event does not fire for the EditorControl is because its text has not changed - the text in the cell to which it provides an editor has changed, so you need to handle the CellChange event.

    Note that UltraCombo now supports "suggest mode" (set its AutoCompleteMode property to 'Suggest' or 'SuggestAppend', which will filter out rows that do not begin with the text the user has typed.

Reply Children