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 ?
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.
Valkov,
What i'm looking for is NOT to display 0.00 if the cell doesn't have any data. Since i have the mask enabled, for all the cells, it shows 0.00 as default value. Can i override this and just display empty cells ? . The other option that i'm looking for is to display the 0.00 only if user enters edit mode.