It is probably really simple, but I need a little help with the scripting. I want my user to enter their phone number in a text field (?) with just their numbers in this format 5555555555 and I want to display their phone number in lists and in their profile in this format (555) 555-5555 ... please advise. Thanks, Tim
you can enforce the numbers-only entry with the regexp:
[0-9]*
for any number of digits
[0-9]{7,9}
for 7-9 digits (e.g.),
as validation server and browser-side.
Output re-formatting is not a standard CB feature. It is a nice feature-request though. I guess you could make a small modification of the ajax text field plugin for instance and by using sprintf() and sscanf() php functions reformat it.