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.
This solution does the job. Thank you very much.
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.