Hello:
I have a currency field and I would like to mask the display to show it as $99.99. However, I cannot locate the property in the designer.
Does that mean that masks are not supported in UltraWinDropdown?
Venki
I'm not sure which control we're talking about here, but for UltraGridBase-derived controls, you can handle InitializeLayout and get a reference to the column via e.Layout.Bands[n].Columns["whatever"], and set the masking properties on that column; the property names all begin with the phrase "Mask".
Brian:
The control I am referring to is UltraDropdown that is used as a dropdownlist for columns of UltraGrid.
Also, if I have two grids with a common column that I would like to link a UltraDropdown to, I see that I have to create two UltraDropDown controls.