Home > Abakada: Back to Basics > Language References > HTML Element Attributes > VCARD_NAME Attribute
Specifies the vCard value of the object to use for the Intelliforms AutoComplete box.
Inline |
<element VCARD_NAME = sVCard... > |
Script |
object.vcard_name = sVCard ] |
vCard.Business.City |
Specifies the business city information mapped to the vCard.Business.City schema. |
vCard.Business.Country |
Specifies the business country information mapped to the vCard.Business.Country schema. |
vCard.Business.Fax |
Specifies the business fax information mapped to the vCard.Business.Fax schema. |
vCard.Business.Phone |
Specifies the business telephone information mapped to the vCard.Business.Phone schema. |
vCard.Business.State |
Specifies the business state, province, or territory information mapped to the vCard.Business.State schema. |
vCard.Business.StreetAddress |
Specifies the business street address information mapped to the vCard.Business.StreetAddress schema. |
vCard.Business.URL |
Specifies the business Web site address information mapped to the vCard.Business.URL schema. |
vCard.Business.Zipcode |
Specifies the business postal code mapped to the vCard.Business.Zipcode schema. |
vCard.Cellular |
Specifies the cellular phone number mapped to the vCard.Cellular schema. |
vCard.Company |
Specifies the company name mapped to the vCard.Company schema. |
vCard.Department |
Specifies the company or agency department name mapped to the vCard.Department schema. |
vCard.DisplayName |
Specifies the user-selected name to display mapped to the vCard.DisplayName schema. |
vCard.Email |
Specifies an e-mail address mapped to the vCard.Email schema. |
vCard.FirstName |
Specifies a first name mapped to the vCard.FirstName schema. |
vCard.Gender |
Specifies gender information mapped to the vCard.Gender schema. |
vCard.Home.City |
Specifies the home city information mapped to the vCard.Home.City schema. |
vCard.Home.Country |
Specifies the home country information mapped to the vCard.Home.Country schema. |
vCard.Home.Fax |
Specifies the home fax number mapped to the vCard.Home.FAX schema. |
vCard.Home.Phone |
Specifies the home phone number mapped to the vCard.Home.Phone schema. |
vCard.Home.State |
Specifies the home state, province, or territory mapped to the vCard.Home.State schema. |
vCard.Home.StreetAddress |
Specifies the home street address information mapped to the vCard.Home.StreetAddress schema. |
vCard.Home.Zipcode |
Specifies the home postal code mapped to the vCard.Home.Zipcode schema. |
vCard.Homepage |
Specifies a home Web page address mapped to the vCard.Homepage schema. |
vCard.JobTitle |
Specifies a company or agency job title mapped to the vCard.JobTitle schema. |
vCard.LastName |
Specifies a last name mapped to the vCard.LastName schema. |
vCard.MiddleName |
Specifies a middle name mapped to the vCard.MiddleName schema. |
vCard.Notes |
Specifies additional notes mapped to the vCard.Notes schema. |
vCard.Office |
Specifies the office location mapped to the vCard.Office schema. |
vCard.Pager |
Specifies a pager number mapped to the vCard.Pager schema. |
Property is read/write with no default value.
The VCARD_NAME attribute is used for the AutoComplete box in Intelliforms.
When a VCARD_NAME attribute and possible value is specified, the AutoComplete box is populated with mapped values from the Profile Assistant and any other submitted values stored for that domain.
For example, if a user enters an e-mail address into a text field that exposes a VCARD_NAME attribute with the possible value vCard.Email, AutoComplete suggests any e-mail information provided in the profile assistant. If a different e-mail address is submitted, the new information becomes available on that domain for other text fields with the same VCARD_NAME value.
If the VCARD_NAME attribute is not specified, the name of the text field is used to map the submitted information. However, information from the profile assistant will not be used.
The AutoComplete feature can be disabled by specifying the no possible value to the AUTOCOMPLETE attribute.
While PASSWORD values can be mapped for AutoComplete, the ability to store this information can be disabled in the browser, and the user is prompted for a confirmation before the value is stored.
Information provided by the AutoComplete feature is not exposed to the object model, and is not visible to a Web page until one of the suggestions is selected as a value for the text field.
The following sample demonstrates the implementation of the VCARD_NAME attribute. A NAME attribute is provided with a value CustomerEmail, and a VCARD_NAME attribute is provided with a value of vCard.Email. Information supplied to this text field is mapped to the vCard schema rather than the NAME of the text field. If the VCARD_NAME attribute was omitted, supplied information would be mapped to the specified NAME.
<input type=text
NAME="CustomerEmail" VCARD_NAME= vCard.Email">
INPUT_password, INPUT_text
Intelliforms