Hello,
I am currently using the UltraCurrencyEditor and have run across a case where we need a special 'All' value. Preferable 'All' would be the 'null' value's text representing whenever the user completely clears the editor (mainly this is a default value and won't be entered manually). I've searched through the editors properties and have not found anything that does what I am hoping for (Version 7.3.20073.1052) . Is there a simple way to do this that I am missing or is this a fairly complicated process? Thanks,
Jason
Hi Jason,
Does the UltraCurrencyEditor control have a NullText or NullTextLabel proprety? If so, that would be the easiest way to display some meaningful text (such as "All") when the value of the control is null (or DBNull).
If there is no such property, then then alternative would be to use a DataFilter.
Thanks for your reply.
That's the sort of property I was hoping for, but the UltraCurrencyEditor has neither "NullText" nor a "NullTextLabel" property. I also do not see anything exposing or accepting a DataFilter on the editor. It appears I would have to cast the UltraCurrencyEditor to an EmbeddableEditorBase to get any access to a DataFilter, but the CurrencyEditor does not implement EmbeddableEditorBase. Are there any other alternatives?