Bug Report T943854
Visible to All Users

Masks do not work starting with v.20.2

created 4 years ago (modified 4 years ago)

[DevExpress Support Team: CLONED FROM T933922: DevExpress WinForms Cheat Sheet - Input Masks]

We've just upgraded to 20.2 and our existing Mask properties don't work very well. Many don't work at all and we now get a underscore place holder where we neither want it nor asked for it. It seems we have to go through each control and adjust any existing Mask properties. Is this true? Did we miss something in the documentation that might help save us some time?

Show previous comments (2)
DevExpress Support Team 4 years ago

    Hello,

    Thank you for your files. We analyzed them and reproduced this behavior on our side. Now, we are working on this issue and once we obtain any results, we will notify you.

    As a workaround, I recommend you replace the following line

    C#
    this.txtFirstName.Properties.Mask.EditMask = "(\\p{Lu}|\\p{Z}|\\-)+";

    with this

    C#
    this.txtFirstName.Properties.Mask.EditMask = "((\\p{Lu}|\\p{Z}|\\-)+)?";

    In other words, all you need is to wrap your current mask to brackets - (mask)?.

    Additionally, I noticed that you are using individual bindings for your FirstName and LastName TextEditors:

    C#
    fluentAPI.SetBinding(txtFirstName, x => x.EditValue, x => x.FirstName); fluentAPI.SetBinding(txtLastName, x => x.EditValue, x => x.LastName);

    I would like to note that it is not necessary to additionally create such an individual binding when using data-bindings.

    Should you have additional questions, let me know.

    RS RS
    Richard Stuppi 2 4 years ago

      The reason for the bindings is to give the ViewModel a chance to react to changes to data. For example, in an editor's EditValue:

      C#
      // ViewModel public virtual string FirstName { get; set; } public void OnFirstNameChanged() { this.RaiseCanExecuteChanged(x => x.Accept()); }

      Is there an alternative method that does not require the use of individual bindings in the View?

      DevExpress Support Team 4 years ago

        Hello,

        In order not to mix several questions in one thread, I have created a separate ticket on your behalf (T944883: MVVM - How to update ViewModel properties once a user changes values in corresponding bound TextEditors). It has been placed in our processing queue and will be answered shortly.

        Answers approved by DevExpress Support

        created 4 years ago

        We have addressed the issue described in this ticket and will include a fix in our next maintenance update. To apply this solution before official release, request a hotfix by clicking the appropriate version link.

        Note: Hotfixes may be unavailable for betas/updates set for release within a week.

          Disclaimer: The information provided on DevExpress.com and affiliated web properties (including the DevExpress Support Center) is provided "as is" without warranty of any kind. Developer Express Inc disclaims all warranties, either express or implied, including the warranties of merchantability and fitness for a particular purpose. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.

          Confidential Information: Developer Express Inc does not wish to receive, will not act to procure, nor will it solicit, confidential or proprietary materials and information from you through the DevExpress Support Center or its web properties. Any and all materials or information divulged during chats, email communications, online discussions, Support Center tickets, or made available to Developer Express Inc in any manner will be deemed NOT to be confidential by Developer Express Inc. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.