You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Here you can set up options of your AutoNumeric field. For more options and details please visit AutoNumeric [configurator](http://autonumeric.org/configurator).
63
+
62
64
##### Aliment
65
+
63
66
Filed uses aliment defined by column attribute.
67
+
64
68
##### Padding size
65
-
If you use coloring css styles or ranges add class <strong>"padding-none"</strong> to column to get full size.<br>
69
+
70
+
If you use coloring css styles or ranges add class *"padding-none"* to column to get full size.
66
71
With this we set padding:0px;
67
72
68
73
#### Form item
69
74
70
75
##### Settings
76
+
71
77
Here you can set up options of your AutoNumeric field. For more options and details please visit AutoNumeric [configurator](http://autonumeric.org/configurator).
78
+
72
79
##### Usage
80
+
73
81
It can be used with following sample :
74
-
<pre>
82
+
83
+
```javascript
75
84
apex.item("ITEM_NAME").setValue("3432.32");
76
85
apex.item("ITEM_NAME").getValue();
77
-
</pre>
86
+
```
87
+
78
88
##### Aliment
79
-
Field is basically text field, but can be align with a "Advanced Custom Attribute" setting :<br/>
80
-
style="text-align:right;"
81
89
90
+
Field is basically text field, but can be align with a "Advanced Custom Attribute" setting
91
+
92
+
```style="text-align:right;"```
82
93
83
94
### Examples
95
+
84
96
#### Default
85
-
<pre>
97
+
98
+
```json
86
99
{
87
100
currencySymbol: " €",
88
101
currencySymbolPlacement: "s"
89
102
}
90
-
</pre><br>
103
+
```
104
+
91
105
#### Format 1.000.000,00
92
-
<pre>
106
+
107
+
```json
93
108
{
94
109
currencySymbol: " €",
95
110
currencySymbolPlacement: "s",
96
111
decimalCharacter: ",",
97
112
decimalCharacterAlternative: ".",
98
113
digitGroupSeparator: "."
99
114
}
100
-
</pre><br>
115
+
```
116
+
101
117
#### Simple style
102
-
<pre>
118
+
119
+
```json
103
120
{
104
121
styleRules: {
105
122
positive: "u-color-4",
106
123
negative: "u-color-9"
107
124
}
108
125
}
109
-
</pre><br>
126
+
```
127
+
110
128
#### Range style
111
-
<pre>
129
+
130
+
```json
112
131
{ currencySymbol: " %",
113
132
currencySymbolPlacement: "s",
114
133
styleRules: {
@@ -136,11 +155,13 @@ style="text-align:right;"
136
155
]
137
156
}
138
157
}
139
-
</pre>
158
+
```
140
159
141
160
#### CSS Style
142
-
To use styles or range style add following css inline
143
-
<pre>
161
+
162
+
To use styles or range style add following css inline
0 commit comments