Hello everyone,
Because they display vertically, there is a lot of white (empty) space left on multiple short text questions. I would like to ask if anyone can suggest a way to do three things:
- Add another column or columns with text input boxes;
- add some text to one of the new columns to include your instructions or comments; and,
- use regex expressions to validate each of the fields individually?
Such a form would be useful for the intake of basic contact info, such as phone numbers. Validation with regex is difficult to do when dealing with forms that may be used internationally. However, if we can separate the elements of any phone number, such as by
country code,
area code,
carrier code,
city code,
phone number, and
extension, then the task of validation becomes easier as the elements, whose form and format vary from country to country, are reduced to their simplest elements. Additionally, to represent all these elements vertically, as multiple short text does, taking the phone numbers of two or more contacts can easily use an entire page. Organizing these elements horizontally in columns, on the other hand, you could take several numbers and condense them into a single question within a reasonable space.
Thanks in advance!