Is there any way to set the input mask on a cell on an individual basis, instead of having it apply to the entire column? I am developing an applicaiton module that generates a summary of business contacts, some of which may be located outside of the United States. As such, their telephone number masking will be different from the American standard.
Yes, you can do this using editors. What you do is set the column's UseEditorMaskSettings property to true. This tells the grid column that the mask properties on the editor override the grid column's settings. Then you create an UltraNumericEditor, UltraCurrencyEditor, or UltraMaskEdit control on the same form with the grid and set it's mask properties how you want then. Set the EditorControl property on the Cell ot the appropriate editor control with the mask settings you want.
Hi,
I am new to infragistics controls.
Is it possible to set user defined mask with the help of 'XamWebMaskedEditor' or others. Please let me know your reply.
example:
url=___________://____________________/_____________________
url= ---(one or more characters or digits)://---------(one or more characters or digits)/------(one or more characters or digits)
Thanks in advance for your help
Ashok
This solution does the job. Thank you very much.