Simply put in the topic title.
I have an UltraComboEditor bound to a grid cell, and require a masked input.
I tried using the UltraGridCell's MaskInput property to no avail. ("999-9999-999")
Thanks in advance.
Hi,
UltraComboEditor does not have any input masking functionality. You can limit the users choices to the list by setting the DropDownStyle to DropDownList, or using the LimitToList property. Or you could validate when the user has entered in the Validating event of the control.
The purpose of the input mask is to aid with the drop down's AutoSuggest capabilities.
It is rather cumbersome for a user to type in: 243-6577-1... to find all entries starting with this string. I was hoping to mask the input to automatically include the dash (-) and make things a little easier.
Thanks.