I tried to set the Mask on a column in Wingrid. I also have a UltraDropdown associated with it. However, when i run the app, i only see the ultradropdown and the Mask does not show up. But, when i remove the ultradropdown association with the column, I can see the mask. Is there a way to have them both at the same time!?
Hi,
UltraDropDown and mask settings on the column are exlusive. Masked editor doesn't have built-in support for drop-down and ultracombo dropdown editor doesn't have built in support for mask so when you set both the grid arbitrarily picks one over the other.
However what you can do to accomplish this is create an UltraMaskedEdit control and add a drop-down button to its ButtonsRight buttons collection. You can then drop down your list in the BeforeEditorButtonDropDown event. I believe there's a sample that shows you how to use custom buttons functionality.
Hope this helps,
Sandip