The UI client library acts as a further abstraction wrapper for the Harmony RightAddress JavaScript client. As with the Harmony RightAddress JavaScript client, the objects used by the library are JavaScript representations of those found in the Harmony RightAddress service API.
| Name | Type | Description |
|---|---|---|
| Harmony.UI.LOADING | CSS class | The CSS class added to the input element during the service method invocation. |
| Harmony.UI.OUTPUT | Field | The field used to output any errors that occur during the service method invocation. |
| Name | Description |
|---|---|
| Harmony.UI.addField | Adds a new field specifying the field name (e.g. Harmony.POSTCODE, Harmony.LOCALITY, etc) and the input element. |
| Harmony.UI.addressLookup | Creates a single-line address lookup on the supplied input element. |
| Harmony.UI.intlAddressLookup | Creates an international single-line address lookup on the supplied input element. |
| Harmony.UI.buildingNameLookup | Creates a building name lookup on the supplied input element. |
| Harmony.UI.floorLevelTypeSelect | Adds the Floor Level types from the specified Source of Truth to the supplied select element. |
| Harmony.UI.idenfityAddress | Identifies the value in the Harmony.EID field and populates any other specified fields with the results. |
| Harmony.UI.localityLookup | Creates a locality lookup on the supplied inputlocality name element. |
| Harmony.UI.advancedLocalityLookup | Creates a locality lookup on the supplied inputelement for any locality level information (name, postcode, state or combined). |
| Harmony.UI.postalLookup | Creates a postal address lookup on the supplied input element. |
| Harmony.UI.postalTypeSelect | Adds the Postal types from the specified Source of Truth to the supplied select element. |
| Harmony.UI.postcodeLookup | Creates a postcode lookup on the supplied input element. |
| Harmony.UI.setOutputElement | Sets the element to use to display the Harmony UI output. |
| Harmony.UI.streetLookup | Creates a street lookup on the supplied input element. |
| Harmony.UI.streetNumberLookup | Creates a street number lookup on the supplied input element. |
| Harmony.UI.streetSuffixTypeSelect | Adds the Street Suffix types from the specified Source of Truth to the supplied select element. |
| Harmony.UI.streetTypeSelect | Adds the Street types from the specified Source of Truth to the supplied select element. |
| Harmony.UI.subdwellingLookup | Creates a subdwelling lookup on the supplied input element. |
| Harmony.UI.suburbLookup | Creates a suburb lookup on the supplied input element. |
| Harmony.UI.townCityLookup | Creates a town/city lookup on the supplied input element. |
| Harmony.UI.unitFlatTypeSelect | Adds the Unit/Flat types from the specified Source of Truth to the supplied select element. |
Adds a new field specifying the field name (e.g. Harmony.POSTCODE, Harmony.LOCALITY, etc) and the input element.
Harmony.POSTCODE).
input element to be assigned to the field (e.g. document.getElementById("postcodeField")).
addressLookup.
The following example assigns the Harmony.LOCALITY field to the input element with the ID localityField:
// Perform the assignment using standard JavaScript.
Harmony.UI.addField(Harmony.LOCALITY, document.getElementById("localityField"));
// Perform the assignment using a jQuery selector.
Harmony.UI.addField(Harmony.LOCALITY, $("#localityField"));
/* Perform the assignment using a jQuery selector with index
for the second set address lookup. */
Harmony.UI.addField(Harmony.LOCALITY, $("#localityField"), 1);
Creates a single-line address lookup on the supplied input element.
input element to create the lookup for (e.g. document.getElementById("address")).
Harmony.AUPAF).
autoFocus)
opts is undefined, only addresses with this state will be in the results.
Otherwise it will return all addresses and addresses with this state will be prioritized in the results.
The following example creates an AUPAF single-line address lookup on the input element with ID singleLineAddress:
// Perform the assignment using standard JavaScript.
Harmony.UI.addressLookup(
document.getElementById("singleLineAddress"), Harmony.AUPAF);
// Perform the assignment using a jQuery selector.
Harmony.UI.addressLookup($("#singleLineAddress"), Harmony.AUPAF);
/* Perform the assignment using a jQuery selector and specify that the lookup
should autofocus. */
Harmony.UI.addressLookup($("#singleLineAddress"), Harmony.AUPAF,
{ autoFocus: true });
/* Perform the assignment using standard JavaScript for addresses
restricted to the state value in the state element. */
Harmony.UI.addressLookup(
document.getElementById("singleLineAddress"), Harmony.AUPAF,
undefined, document.getElementById("state"));
// Perform the assignment using a jQuery selector with index for the second set lookup.
Harmony.UI.addressLookup($("#singleLineAddress"), Harmony.AUPAF, opt, null, 1);
Creates an international single-line address lookup on the supplied input and country elements
input element to create the lookup for (e.g. document.getElementById("address")).
country code to create the lookup for (e.g. document.getElementById("country")).
autoFocus)
The following example creates an international single-line address lookup on the input element with ID address and input countryElment with ID country:
// Perform the assignment using standard JavaScript.
Harmony.UI.intlAddressLookup(
document.getElementById("address"), document.getElementById("country"));
// Perform the assignment using a jQuery selector.
Harmony.UI.intlAddressLookup($("#address"), $("#country"));
/* Perform the assignment using a jQuery selector and specify that the lookup
should autofocus. */
Harmony.UI.intlAddressLookup($("#address"), $("#country"), { autoFocus: true });
// Perform the assignment using a jQuery selector with index for the second set lookup.
Harmony.UI.intlAddressLookup($("#address"), $("#country"), opt, 1);
Creates a building name on the supplied input element.
input element to create the lookup for (e.g. document.getElementById("buildingName")).
Harmony.AUPAF).
autoFocus)
The following example creates an AUPAF building name lookup on the input element with ID building:
// Perform the assignment using standard JavaScript.
Harmony.UI.buildingNameLookup(
document.getElementById("building"), Harmony.AUPAF);
// Perform the assignment using a jQuery selector.
Harmony.UI.buildingNameLookup($("#building"), Harmony.AUPAF);
/* Perform the assignment using a jQuery selector and specify that the lookup
should autofocus. */
Harmony.UI.buildingNameLookup($("#building"), Harmony.AUPAF, { autoFocus: true });
Adds the Floor Level types from the specified Source of Truth to the supplied select element.
select element to create the lookup for (e.g. document.getElementById("floorLevelTypes")).
Harmony.AUPAF).
The following example adds the floor level types to the select element with the ID floorLevelTypes:
// Perform the assignment using standard JavaScript.
Harmony.UI.floorLevelTypeSelect(document.getElementById("floorLevelTypes"),
Harmony.AUPAF);
// Perform the assignment using a jQuery selector.
Harmony.UI.floorLevelTypeSelect($("#floorLevelTypes"), Harmony.AUPAF);
Identifies the value in the Harmony.EID field and populates any other specified fields with the results.
The following example uses jQuery to assign a click event to a button with the ID
identifyButton, which then identifies the address using the eid input and
outputs the resolved address components into the postcode, locality,
street, streetNumber and subdwelling inputs:
// Add the eid field using jQuery selectors.
Harmony.addField($("#eid"), Harmony.EID);
// Add the output fields using jQuery selectors.
Harmony.addField($("#postcode"), Harmony.POSTCODE);
Harmony.addField($("#locality"), Harmony.LOCALITY);
Harmony.addField($("#street"), Harmony.STREET);
Harmony.addField($("#streetNumber"), Harmony.STREET_NUMBER);
Harmony.addField($("#subdwelling"), Harmony.SUBDWELLING);
// Use jQuery to generate the click event for the button.
$("#identifyButton").click(function(event) {
// Identify the address using the Encrypted ID.
Harmony.UI.identifyAddress();
});
Creates a locality on the supplied input locality name element.
input element to create the lookup for (e.g. document.getElementById("locality")).
Harmony.AUPAF).
autoFocus)
The following example creates an AUPAF locality lookup on the input element with ID locality:
// Perform the assignment using standard JavaScript.
Harmony.UI.localityLookup(
document.getElementById("locality"), Harmony.AUPAF);
// Perform the assignment using a jQuery selector.
Harmony.UI.localityLookup($("#locality"), Harmony.AUPAF);
/* Perform the assignment using a jQuery selector and specify that the lookup
should autofocus. */
Harmony.UI.localityLookup($("#locality"), Harmony.AUPAF, { autoFocus: true });
Creates a locality on the supplied inputelement for any locality level information (name, postcode, state or combined).
input element to create the lookup for (e.g. document.getElementById("locality")).
Harmony.AUPAF).
autoFocus)
The following example creates an AUPAF locality lookup on the input element with ID locality:
// Perform the assignment using standard JavaScript.
Harmony.UI.advancedLocalityLookup(
document.getElementById("locality"), Harmony.AUPAF);
// Perform the assignment using a jQuery selector.
Harmony.UI.advancedLocalityLookup($("#locality"), Harmony.AUPAF);
/* Perform the assignment using a jQuery selector and specify that the lookup
should autofocus. */
Harmony.UI.advancedLocalityLookup($("#locality"), Harmony.AUPAF, { autoFocus: true });
Creates a postal on the supplied input element.
input element to create the lookup for (e.g. document.getElementById("postal")).
Harmony.AUPAF).
autoFocus)
The following example creates an AUPAF postal lookup on the input element with ID postalAddress:
// Perform the assignment using standard JavaScript.
Harmony.UI.postalLookup(
document.getElementById("postalAddress"), Harmony.AUPAF);
// Perform the assignment using a jQuery selector.
Harmony.UI.postalLookup($("#postalAddress"), Harmony.AUPAF);
/* Perform the assignment using a jQuery selector and specify that the lookup
should autofocus. */
Harmony.UI.postalLookup($("#postalAddress"), Harmony.AUPAF, { autoFocus: true });
Adds the Postal types from the specified Source of Truth to the supplied select element.
select element to create the lookup for (e.g. document.getElementById("postalTypes")).
Harmony.AUPAF).
The following example adds the postal types to the select element with the ID postalTypes:
// Perform the assignment using standard JavaScript.
Harmony.UI.postalTypeSelect(document.getElementById("postalTypes"),
Harmony.AUPAF);
// Perform the assignment using a jQuery selector.
Harmony.UI.postalTypeSelect($("#postalTypes"), Harmony.AUPAF);
Creates a postcode lookup on the supplied input element.
input element to create the lookup for (e.g. document.getElementById("postcode")).
Harmony.AUPAF).
autoFocus)
The following example creates an AUPAF postcode lookup on the input element with ID postalCode:
// Perform the assignment using standard JavaScript.
Harmony.UI.postcodeLookup(
document.getElementById("postalCode"), Harmony.AUPAF);
// Perform the assignment using a jQuery selector.
Harmony.UI.postcodeLookup($("#postalCode"), Harmony.AUPAF);
/* Perform the assignment using a jQuery selector and specify that the lookup
should autofocus. */
Harmony.UI.postcodeLookup($("#postalCode"), Harmony.AUPAF, { autoFocus: true });
Sets the element to use to display the Harmony UI output.
document.getElementById("output")).
The following example sets the output element to the element with the ID outputDiv:
// Perform the assignment using standard JavaScript.
Harmony.UI.setOutputElement(document.getElementById("outputDiv"));
// Perform the assignment using a jQuery selector.
Harmony.UI.setOutputElement($("#outputDiv"));
Creates a street lookup on the supplied input element.
input element to create the lookup for (e.g. document.getElementById("street")).
Harmony.AUPAF).
autoFocus)
The following example creates an AUPAF street lookup on the input element with ID street:
// Perform the assignment using standard JavaScript.
Harmony.UI.streetLookup(
document.getElementById("street"), Harmony.AUPAF);
// Perform the assignment using a jQuery selector.
Harmony.UI.streetLookup($("#street"), Harmony.AUPAF);
/* Perform the assignment using a jQuery selector and specify that the lookup
should autofocus. */
Harmony.UI.streetLookup($("#street"), Harmony.AUPAF, { autoFocus: true });
Creates a street number lookup on the supplied input element.
input element to create the lookup for (e.g. document.getElementById("streetNumber")).
Harmony.AUPAF).
autoFocus)
The following example creates an AUPAF street number lookup on the input element with ID streetNumber:
// Perform the assignment using standard JavaScript.
Harmony.UI.streetNumberLookup(
document.getElementById("streetNumber"), Harmony.AUPAF);
// Perform the assignment using a jQuery selector.
Harmony.UI.streetNumberLookup($("#streetNumber"), Harmony.AUPAF);
/* Perform the assignment using a jQuery selector and specify that the lookup
should autofocus. */
Harmony.UI.streetNumberLookup($("#streetNumber"), Harmony.AUPAF,
{ autoFocus: true });
Adds the Street Suffix types from the specified Source of Truth to the supplied select element.
select element to create the lookup for (e.g. document.getElementById("streetSuffixTypes")).
Harmony.AUPAF).
The following example adds the street suffix types to the select element with the ID streetSuffixTypes:
// Perform the assignment using standard JavaScript.
Harmony.UI.streetSuffixTypeSelect(document.getElementById("streetSuffixTypes"),
Harmony.AUPAF);
// Perform the assignment using a jQuery selector.
Harmony.UI.streetSuffixTypeSelect($("#streetSuffixTypes"), Harmony.AUPAF);
Adds the Street types from the specified Source of Truth to the supplied select element.
select element to create the lookup for (e.g. document.getElementById("streetTypes")).
Harmony.AUPAF).
The following example adds the street suffix types to the select element with the ID streetTypes:
// Perform the assignment using standard JavaScript.
Harmony.UI.streetTypeSelect(document.getElementById("streetTypes"),
Harmony.AUPAF);
// Perform the assignment using a jQuery selector.
Harmony.UI.streetTypeSelect($("#streetTypes"), Harmony.AUPAF);
Creates a Subdwelling lookup on the supplied input element.
input element to create the lookup for (e.g. document.getElementById("subdwelling")).
Harmony.AUPAF).
autoFocus)
The following example creates an AUPAF subdwelling lookup on the input element with ID subdwelling:
// Perform the assignment using standard JavaScript.
Harmony.UI.subdwellingLookup(
document.getElementById("subdwelling"), Harmony.AUPAF);
// Perform the assignment using a jQuery selector.
Harmony.UI.subdwellingLookup($("#subdwelling"), Harmony.AUPAF);
/* Perform the assignment using a jQuery selector and specify that the lookup
should autofocus. */
Harmony.UI.subdwellingLookup($("#subdwelling"), Harmony.AUPAF,
{ autoFocus: true });
Creates a Suburb lookup on the supplied input element.
input element to create the lookup for (e.g. document.getElementById("suburb")).
Harmony.AUPAF).
autoFocus)
The following example creates an AUPAF suburb lookup on the input element with ID suburb:
// Perform the assignment using standard JavaScript.
Harmony.UI.suburbLookup(
document.getElementById("suburb"), Harmony.AUPAF);
// Perform the assignment using a jQuery selector.
Harmony.UI.suburbLookup($("#suburb"), Harmony.AUPAF);
/* Perform the assignment using a jQuery selector and specify that the lookup
should autofocus. */
Harmony.UI.suburbLookup($("#suburb"), Harmony.AUPAF,
{ autoFocus: true });
Creates a Town/City lookup on the supplied input element.
input element to create the lookup for (e.g. document.getElementById("townCity")).
Harmony.AUPAF).
autoFocus)
The following example creates an AUPAF town/city lookup on the input element with ID townOrCity:
// Perform the assignment using standard JavaScript.
Harmony.UI.townCityLookup(
document.getElementById("townOrCity"), Harmony.AUPAF);
// Perform the assignment using a jQuery selector.
Harmony.UI.townCityLookup($("#townOrCity"), Harmony.AUPAF);
/* Perform the assignment using a jQuery selector and specify that the lookup
should autofocus. */
Harmony.UI.townCityLookup($("#townOrCity"), Harmony.AUPAF,
{ autoFocus: true });
Adds the Unit/Flat types from the specified Source of Truth to the supplied select element.
select element to create the lookup for (e.g. document.getElementById("unitFlatTypes")).
Harmony.AUPAF).
The following example adds the unit/flat types to the select element with the ID unitTypes:
// Perform the assignment using standard JavaScript.
Harmony.UI.unitFlatTypeSelect(document.getElementById("unitTypes"),
Harmony.AUPAF);
// Perform the assignment using a jQuery selector.
Harmony.UI.unitFlatTypeSelect($("#unitTypes"), Harmony.AUPAF);