Skip to main content
Version: 3.5

AutoComplete

Namespace: Wisej.Web

Assembly: Wisej.Framework (3.5.0.0)

Specifies the value to assign the autocomplete attribute, used in the TextBox control.

public enum AutoComplete : Enum

Fields

NameDescription
AdditionalNameThe middle name.
AddressLevel1The first administrative level in the address. This is typically the province in which the address is located. In the United States, this would be the state. In Switzerland, the canton. In the United Kingdom, the post town.
AddressLevel2The second administrative level, in addresses with at least two of them. In countries with two administrative levels, this would typically be the city, town, village, or other locality in which the address is located.
AddressLevel3The third administrative level, in addresses with at least three administrative levels.
AddressLevel4The finest-grained administrative level, in addresses which have four levels.
AddressLine1The first individual line of the street address.
AddressLine2The second individual line of the street address.
AddressLine3The third individual line of the street address.
BdayA birth date, as a full date.
BdayDayThe day of the month of a birth date.
BdayMonthThe month of the year of a birth date.
BdayYearThe year of a birth date.
CcAdditionalNameA middle name as given on a payment instrument or credit card.
CcCscThe security code for the payment instrument; on credit cards, this is the 3-digit verification number on the back of the card.
CcExpA payment method expiration date, typically in the form "MM/YY" or "MM/YYYY".
CcExpMonthThe month in which the payment method expires.
CcExpYearThe year in which the payment method expires.
CcFamilyNameA family name, as given on a credit card.
CcGivenNameA given (first) name as given on a payment instrument like a credit card.
CcNameThe full name as printed on or associated with a payment instrument such as a credit card. Using a full name field is preferred, typically, over breaking the name into pieces.
CcNumberA credit card number or other number identifying a payment method, such as an account number.
CcTypeThe type of payment instrument (such as "Visa" or "Master Card").
CountryA country or territory code.
CountryNameA country or territory name.
CurrentPasswordThe user's current password.
DefaultUses the default value configured in the javascript class wisej.web.TextBoxBase. It can be changed in javascript using wisej.web.TextBoxBase.setAutoCompleteDefault("on" | "off").
EmailAn email address.
FamilyNameThe family (or "last") name.
GivenNameThe given (or "first") name.
HonorificPrefixThe prefix or title, such as "Mrs.", "Mr.", "Miss", "Ms.", "Dr.", or "Mlle.".
HonorificSuffixThe suffix, such as "Jr.", "B.Sc.", "PhD.", "MBASW", or "IV".
ImppA URL for an instant messaging protocol endpoint, such as "xmpp:username@example.net".
LanguageA preferred language, given as a valid BCP 47 language tag.
NameThe field expects the value to be a person's full name. Using "name" rather than breaking the name down into its components is generally preferred because it avoids dealing with the wide diversity of human names and how they are structured;
NewPasswordA new password. When creating a new account or changing passwords, this should be used for an "Enter your new password" or "Confirm new password" field, as opposed to a general "Enter your current password" field that might be present.
NicknameA nickname or handle.
OffThe user must explicitly enter a value into this field for every use. The browser does not automatically complete the entry.
OnThe browser is allowed to automatically complete the value based on values that the user has entered during previous uses.
OneTimeCodeA one-time code used for verifying user identity.
OrganizationA company or organization name, such as "Acme Widget Company" or "Girl Scouts of America".
OrganizationTitleA job title, or the title a person has within an organization, such as "Senior Technical Writer", "President", or "Assistant Troop Leader".
PhotoThe URL of an image representing the person, company, or contact information given in the other fields in the form.
PostalCodeA postal code (in the United States, this is the ZIP code).
SexA gender identity (such as "Female", "Fa'afafine", "Male"), as freeform text without newlines.
StreetAddressA street address. This can be multiple lines of text, and should fully identify the location of the address within its second administrative level (typically a city or town), but should not include the city name, ZIP or postal code, or country name.
TelA full telephone number, including the country code.
TelAreaCodeThe area code, with any country-internal prefix applied if appropriate.
TelCountryCodeThe country code, such as "1" for the United States, Canada, and other areas in North America and parts of the Caribbean.
TelExtensionA telephone extension code within the phone number, such as a room or suite number in a hotel or an office extension in a company.
TelLocalThe phone number without the country or area code.
TelLocalPrefixThe prefix of the local telephone number. For the phone number "555-6502", use "tel-local-prefix" for "555".
TelLocalSuffixThe suffix of the local telephone number. For the phone number "555-6502", use "tel-local-suffix" for "6502".
TelNationalThe entire phone number without the country code component, including a country-internal prefix.
TransactionAmountThe amount, given in the currency specified by "transaction-currency", of the transaction, for a payment form.
TransactionCurrencyThe currency in which the transaction is to take place.
UrlA URL, such as a home page or company web site address as appropriate given the context of the other fields in the form.
UsernameA username or account name.

Used By

NameDescription
TextBoxBase.AutoCompleteReturns of sets whether the browser can auto complete the field with values previously entered by the user.
DataGridViewTextBoxCell.AutoCompleteReturns or sets whether the browser can auto complete the field with values previously entered by the user.
DataGridViewTextBoxColumn.AutoCompleteReturns of sets whether the browser can auto complete the field with values previously entered by the user.