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
790
KeyActionMappings
posted

It what order does the grid process the various KeyActionMappings collections owned by its child objects?

I have overriden the EditorWithMask class and am attempting to add a new NextSection mapping, but it never seems to get processed.  I believe some other child element of the grid has a conflicting mapping, but I can't figure out what it is.

If you can't supply the order, do you have any hints as to the best way to troubleshoot the issue?

Thanks!

Parents
No Data
Reply
  • 53790
    posted

    Hello Mathdx,

    Maybe one possible approach to achieve the desired behavior could be if you set property UseEditorMaskSettings and also using  EditorComponent. For example:

    ultraGrid1.DisplayLayout.Bands[0].Columns["B"].EditorComponent =  ultraMaskedEdit1;

    ultraGrid1.DisplayLayout.Bands[0].Columns["B"].UseEditorMaskSettings = true;

    Please let me know if you have any questions.

    Regards

Children