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
  • 35319
    posted

    Hello Ima,

     

    Thank you for your post. I have been looking into your question and I need some more details about your scenario. Which XamComboEditor you are using : WPF specific one or the shared one? It seems that you have handled the ‘ValueChanged’ event of the XamComboEditor. It will be very helpful to attach a sample application that shows your scenario.

     

    Looking forward to hearing from you.

Reply Children