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.