The layout for alphabetic keyboard characters in this language.
The description of the back button's purpose, used in a tool tip.
The text to display for the button to erase the previous character.
The description of the button's purpose, used in a tool tip.
The text to display on a trigger button for the keypad.
The description of the clear button's purpose, used in a tool tip.
The text to display for the button to clear the text field.
The description of the close button's purpose, used in a tool tip.
The text to display for the button to close the keypad.
The description of the enter button's purpose, used in a tool tip.
The text to display for the button to add a carriage return.
The layout for the full standard keyboard in this language.
Set to true
to indicate that the current language flows right-to-left.
The description of the shift button's purpose, used in a tool tip.
The text to display for the button to shift between upper and lower case characters.
The description of the space bar button's purpose, used in a tool tip.
The text to display for the extended button to add a space.
The description of the tab button's purpose, used in a tool tip.
The text to display for the button to add a tab.
A function to determine whether or not a character is alphabetic.
The character to test is passed as the parameter and a boolean response is expected.
The default accepts A
to Z
and a
to z
.
A character to test.
true
if the given character is contained in the set of alphabetical characters, or false
otherwise.
A function to determine whether or not a character is numeric.
The character to test is passed as the parameter and a boolean response is expected.
The default accepts 0
to 9
.
A character to test.
true
if the given character is contained in the set of numerical characters, or false
otherwise.
A function to convert a character into its upper case form.
It accepts one parameter being the current character and returns the corresponding upper case character.
The default uses the standard JavaScript toUpperCase
function.
$(selector).keypad({
layout: [
"12345",
$.keypad.SHIFT
],
toUpper: function(ch) {
return {
"1": "!",
"2": "@",
"3": "#",
"4": "$",
"5": "%"
}[ch] || ch;
}
});
A character to convert to upper case.
The given character, converted to upper case; or the given character itself if it cannot be converted.
Generated using TypeDoc
These settings comprise the regional settings that may be localised by a language package. They can be overridden for individual instances: