The currency
field.
The currency field uses the JQuery Price Format plugin to render format the input as it's entered.
Title | Currency Field |
Description | Provides an automatically formatted and configurable input for entering currency amounts. |
JSON Schema Type(s) | string |
Field Type | currency |
Base Field Type | text |
Property | Type | Default | Description |
---|---|---|---|
default | any | The 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. | |
dependencies | array | List of property dependencies. | |
description | string | Detailed description of the property. | |
disallow | array | List of disallowed values for the property. | |
enum | array | List of specific values for this property | |
format | string | Data format of the property. | |
maxLength | number | Maximum length of the property value. | |
minLength | number | Minimal length of the property value. | |
pattern | string | Regular expression for the property value. | |
readonly | boolean | Indicates 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. | |
required | boolean | Indicates 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. | |
title | string | Short description of the property. | |
type | string | string | Data type of the property. |
Property | Type | Default | Description |
---|---|---|---|
allowNegative | boolean | Determines if negative numbers are allowed. | |
allowOptionalEmpty | Allows this non-required field to validate when the value is empty | ||
autocomplete | string | Allows you to specify the autocomplete attribute for the underlying input control whether or not field should have autocomplete enabled. | |
centsLimit | number | 2 | The limit of fractional digits. |
centsSeparator | text | . | The separator between whole and fractional amounts. |
clearPrefix | boolean | Determines if the prefix is cleared on blur. | |
clearSuffix | boolean | Determines if the suffix is cleared on blur. | |
data | object | Allows you to specify a key/value map of data attributes that will be added as DOM attribuets for the underlying input control. The data attributes will be added as data-{name}='{value}'. | |
disabled | boolean | Field will be disabled if true. | |
disallowEmptySpaces | boolean | Whether to disallow the entry of empty spaces in the text | |
disallowOnlyEmptySpaces | boolean | Whether to disallow the entry of only empty spaces in the text | |
fieldClass | string | Specifies 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. | |
focus | checkbox | true | If 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. |
form | object | Options for rendering the FORM tag. | |
helper | string | Field help message. | |
helpers | array | An array of field help messages. Each message will be displayed on it's own line. | |
helpersPosition | string | below | Defines the placement location of the helper text relative to the control (either 'above' or 'below') |
hidden | boolean | Field will be hidden if true. | |
hideInitValidationError | boolean | Hide initial validation errors if true. | |
id | string | Unique field id. Auto-generated if not provided. | |
inputType | string | Allows for the override of the underlying HTML5 input type. If not specified, an assumed value is provided based on the kind of input control (i.e. 'text', 'date', 'email' and so forth) | |
insertPlusSign | boolean | Determines if a plus sign should be inserted for positive values. | |
label | string | Field label. | |
limit | number | A limit of the length of the field. | |
maskString | string | Expression for the field mask. Field masking will be enabled if not empty. | |
name | string | Field Name. | |
optionLabels | array | An array of string labels for items in the enum array | |
placeholder | string | Field placeholder. | |
prefix | text | $ | The prefix if any for the field. |
readonly | boolean | Field will be readonly if true. | |
round | string | none | Determines if the field is rounded. (Rounding is done when getValue is called and is not reflected in the UI) |
showMessages | boolean | true | Display validation messages if true. |
size | number | 40 | Field size. |
sort | function | Defines an f(a,b) sort function for the array of enumerated values [{text, value}]. This is used to sort enum and optionLabels as well as results that come back from any data sources (for select and radio controls). By default the items are sorted alphabetically. Don't apply any sorting if false. | |
suffix | text | The suffix if any for the field. | |
thousandsSeparator | string | , | The separator between thousands. |
type | string | currency | Field type. |
typeahead | Provides configuration for the $.typeahead plugin if it is available. For full configuration options, see: https://github.com/twitter/typeahead.js | ||
unmask | boolean | true | If true then the resulting value for this field will be unmasked. That is, the resulting value will be a float instead of a string (with the prefix, suffix, etc. removed). |
validate | boolean | true | Field validation is required if true. |
view | string | Allows for this field to be rendered with a different view (such as 'display' or 'create') |
The Editor field requires the JQuery Price Format to be loaded ahead of its use.
Be sure to load lib/jquery-price-format2/jquery.price_format.min.js
before rendering your forms. You can
download JQuery Price Format from jquerypriceformat.com.
JQuery Price Format overwrites the unmask
method of the JQuery Masked Input plugin. If you want to use JQuery Masked Input you should load the price format plugin before you load the masked input plugin.
Currency field with default settings.
Currency field with euro formatting.