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
1800
Default cell value for masked input column
posted

Hi,

I have a bound column  for which i have set the Mask Input property to "-nnnnn.nn"  (decimal) and Mask DataMode as Raw. Now, for that column the cell value that is displayed is 0.00. I don't want to show 0.00 as default value. On entering edit mode, i can show the mask. Is there a property to do this ?

Parents
  • 20872
    Offline posted

    Hello Viswanth,

    If you would like to show the MaskPrompt chars when the cell is not in edit mode you could do the following for your column:

    .MaskDisplayMode = Infragistics.Win.UltraWinMaskedEdit.MaskMode.IncludePromptChars; or

    .MaskDisplayMode = Infragistics.Win.UltraWinMaskedEdit.MaskMode.IncludeBoth;

    Please feel free to let me know if this is not what you are looking for.

Reply Children