I have a prompter that allows a user to key in several pieces of information about a contact such as First Name, Last Name, Street Address, City, State, Zipcode, Phone Number, Email, Emergency Contact First Name, Emergency Contact Last Name, Emergency Contact Phone Number, etc. Due to the number of .addParameter entries the prompter window gets a little cluttered. To try and make it look a little more organized I would like to add some space in the prompter window between the Contact collection fields and the collection fields for their Emergency Contact. Is there a way to do this by adding a line with just plain text to show where the Emergency Contact entry fields start?
If you’re on the desktop, maybe you want to use a custom layout to put cut down information into?
Hi Ron,
There’s nothing like that at the moment, but it shouldn’t be too hard for me to allow you to specify label only rows that could be used to divide up the fields on the Prompter.
I’m just working on that now.
Thanks for the suggestion!
Brendan
How’s this?
.addParameter('', null, 'label')
You could of course type some text into the first parameter of the addParameter function, such as:
.addParameter('More Details:', null, 'label');
Attachments:
You must be
logged in to view attached files.
Thanks for taking a look at this Brendan. Based on the screen-shot it’s exactly what I’m looking for.