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
100
MaskInput of NumericEditor fails
posted

Hey!

I want to set an individual MaskInput, because we need to display different types. The problem is that - against the documentation - the MaskInput interprets more that expected.

Based on https://ko.infragistics.com/help/winforms/infragistics.win.ultrawineditors~infragistics.win.ultrawineditors.ultranumericeditor~maskinput all other Literals should be just displayed, but some characters break it. Examples were "A", "C" and more.

What can we do to fix that?

Parents
No Data
Reply
  • 2700
    Verified Answer
    Offline posted

    Hello Nico,

    Thank you for posting to Infragistics Community!

    I have been looking into your question and what I can say is that any literal character has to be escaped in the MaskInput string in order to be displayed, for example:

    this.ultraNumericEditor1.MaskInput = "{double:1.3:c} \\A\\B\\C";

    which will result in:

    If this is not an accurate demonstration of what you are trying to achieve, please, feel free to provide more details, so I can assist you further.

    Best regards,
    Bozhidara Pachilova
    Associate Software Developer

Children