The address field.

Properties

TitleAddress
DescriptionStandard US Address with Street, City, State and Zip. Also comes with support for Google map.
JSON Schema Type(s)any
Field Typeaddress
Base Field Typeobject

Schema

PropertyTypeDefaultDescription
defaultanyThe default value to be assigned for this property. If the data for the field is empty or not provided, this default value will be plugged in for you. Specify a default value when you want to pre-populate the field's value ahead of time.
dependenciesarrayList of property dependencies.
descriptionstringDetailed description of the property.
disallowarrayList of disallowed values for the property.
formatstringData format of the property.
maxPropertiesnumberThe maximum number of properties that this object is allowed to have
minPropertiesnumberThe minimum number of properties that this object is required to have
propertiesobjectList of child properties.
readonlybooleanIndicates that the field is read-only. A read-only field cannot have it's value changed. Read-only fields render in a grayed-out or disabled control. If the field is rendered using a view with the displayReadonly attribute set to false, the read-only field will not appear.
requiredbooleanIndicates whether the field's value is required. If set to true, the field must take on a valid value and cannnot be left empty or unassigned.
titlestringShort description of the property.
typestringanyData type of the property.

Options

PropertyTypeDefaultDescription
animatebooleantrueUp and down transitions will be animated
collapsedbooleanField set is initially collapsed if true.
collapsiblebooleanField set is collapsible if true.
disabledbooleanField will be disabled if true.
fieldClassstringSpecifies one or more CSS classes that should be applied to the dom element for this field once it is rendered. Supports a single value, comma-delimited values, space-delimited values or values passed in as an array.
fieldsobjectList of options for child fields.
focuscheckboxtrueIf true, the initial focus for the form will be set to the first child element (usually the first field in the form). If a field name or path is provided, then the specified child field will receive focus. For example, you might set focus to 'name' (selecting the 'name' field) or you might set it to 'client/name' which picks the 'name' field on the 'client' object.
formobjectOptions for rendering the FORM tag.
helperstringField help message.
helpersarrayAn array of field help messages. Each message will be displayed on it's own line.
helpersPositionstringbelowDefines the placement location of the helper text relative to the control (either 'above' or 'below')
hiddenbooleanField will be hidden if true.
hideInitValidationErrorbooleanHide initial validation errors if true.
idstringUnique field id. Auto-generated if not provided.
labelstringField label.
lazyLoadingbooleanChild fields will only be rendered when the fieldset is expanded if this option is set true.
legendStylestringbuttonField set legend style.
optionLabelsarrayAn array of string labels for items in the enum array
ordernumberAllows for optional specification of the index of this field in the properties array.
readonlybooleanField will be readonly if true.
showMapOnLoadboolean
showMessagesbooleantrueDisplay validation messages if true.
typestringaddressField type.
validatebooleantrueField validation is required if true.
validateAddressbooleantrueEnable address validation if true
viewstringAllows for this field to be rendered with a different view (such as 'display' or 'create')

Example 1

This example shows an address field that utilizes the Google Maps API to allow the end user to modify an address and view it on a map.

Result

Home Address
Street
Show Google Map

Source

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
$("#field1").alpaca({
"schema": {
"title": "Home Address",
"type": "any"
},
"options": {
"type": "address",
"addressValidation": true,
"showMapOnLoad": true
},
"data": {
"street": ["308 Eddy Street", "Apartment #3"],
"city": "Ithaca",
"state": "NY",
"zip": "14850"
}
});
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Example 2

Address field rendered in display-only mode.

Result

Home Address
Street
308 Eddy Street
Apartment #3
Ithaca
NEW YORK
14850

Source

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
$("#field2").alpaca({
"data": {
"street": ["308 Eddy Street", "Apartment #3"],
"city": "Ithaca",
"state": "NY",
"zip": "14850"
},
"options": {
"type": "address"
},
"schema": {
"title": "Home Address",
"type": "any"
},
"view": "bootstrap-display"
});
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

© 2025 Gitana Software, Inc.

Alpaca is sponsored by