2018.1

Table Of Contents
l
Insert Form Field Defaults:
l
Style: Defines how labels are added to input form elements:
l
Wrap input with label: The label is wrapped around the element, such as
<label>First Name <input type="text" name="first_name"></label>
l
Attach label to input: The label is placed before the input, and refers to it:
<label for="first_name">First Name</label> <input type="text" name="first_
name">
l
Use label as placeholder: The label is removed and the text is put as a
placeholder, such as: <input type="text" name="first_name" placeholder="First
Name">
l
No label: The label value is ignored.
l
Insertion Point: Defines how new elements are inserted, by default:
l
At cursor position: The element is inserted where the cursor is located in the
template.
l
Before element: The element is inserted before the current element where the
cursor is located. For example if the cursor is within a paragraph, insertion
occurs before the <p> tag.
l
After start tag: The element is inserted within the current element, at the
beginning, just after the start tag.
l
Before end tag: The element is inserted within the current element, at the
end, just before the end tag.
l
After element: The element is inserted after the current element where the
cursor is located. For example if the cursor is within a paragraph, insertion
occurs after the <p> tag.
l
Get Job Data File: Defines the Workflow URL to be used when the Get Job Data
File on submit toolbar button is active. This simplifies the process of creating and
testing COTG Forms (see "Capture OnTheGo" on page463).
l
Workflow URL: The default URLis: http://127.0.0.1:8080/_
getSampleFormData_
The Web Preferences also provides you with buttons to :
l Restore Defaults. This option restores the preferences to Defaults. This applies to the
current Preferences page only, but not other Preferences.
Page 791