If I try to run these two filters, only trim works: form.elementFilters.trim = "StringTrim" form.elements.phone.options.filters.digits = "Digits"
If I comment out trim, the digits filter works: ;form.elementFilters.trim = "StringTrim" form.elements.phone.options.filters.digits = "Digits" Without resorting to code, is there another way to implement both or do I need to overload a custom element? - pw
