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
1155
how to fetch the cell by ValueEditor
posted

I handle the value changed event of the XamComboEditor

onvaluechanged()

{

var editor = sender as XamComboEditor;

if (editor.IsInEditorMode)

{

var cell = GetCellByValueEditor(editor);

cel.EndEdit();

}
}

Here I don't want to call editor.EndEditor(true,true)

because after I call that method, the selected row will move to the next one.

Parents Reply Children
No Data