Skip to content

Commit d192e49

Browse files
committed
4.6.0.3
1 parent 7d5278b commit d192e49

File tree

10 files changed

+5632
-5582
lines changed

10 files changed

+5632
-5582
lines changed

README.md

Lines changed: 78 additions & 55 deletions
Original file line numberDiff line numberDiff line change
@@ -4,52 +4,52 @@ APEX Plug-in built on top of [AutoNumeric.js](http://autonumeric.org/) library.
44
Plugin even uses NLS setting, to detect database setting ".," or ",.".
55

66
## Demo
7-
A demo application is available on apex.oracle.com<br/>
8-
https://apex.oracle.com/pls/apex/f?p=122979
7+
8+
A demo application is available on
9+
[https://apex.oracle.com/pls/apex/f?p=122979](https://apex.oracle.com/pls/apex/f?p=122979)
910

1011
## Preview
11-
![](https://github.com/grlicaa/AutoNumeric/blob/master/docs/preview/AutoNumericPreview.gif)
1212

13+
![AutoNumericPreview.gif](https://github.com/grlicaa/AutoNumeric/blob/master/docs/preview/AutoNumericPreview.gif)
1314

1415
## Change log
15-
#### V 4.6.0.2 - 19.11.2020
16-
<ul>
17-
<li>Fixed APEX 20.2 "height: var" problem in css file</li>
18-
</ul>
16+
17+
### V 4.6.0.3 - 06.12.2020
18+
19+
- Fixed "Warn on Unsaved Changes" issue [#1](https://github.com/grlicaa/AutoNumeric/issues/1)
20+
- Documentation improvement
21+
22+
### V 4.6.0.2 - 19.11.2020
23+
24+
- Fixed APEX 20.2 "height: var" problem in css file
1925

2026
## Install
2127

2228
### New install
23-
<ol>
24-
<li>Import plug-in "item_type_plugin_si_trts_autonumeric.sql" into your application.</li>
25-
<li>Add Item on page or Interactive Grid</li>
26-
<li>Choose AutoNumeric[Plug-in] for Item type on Page item or Interactive Grid column</li>
27-
<li>Save changes. AutoNumeric is now ready to use.</li>
28-
<li>Please leave some feedback. Thanks!</li>
29-
</ol>
3029

30+
1. Import plug-in "item_type_plugin_si_trts_autonumeric.sql" into your application.
31+
2. Add Item on page or Interactive Grid.
32+
3. Choose AutoNumeric[Plug-in] for Item type on Page item or Interactive Grid column.
33+
4. Save changes. AutoNumeric is now ready to use.
34+
5. Please leave some feedback. Thanks!
3135

32-
### Tested On (so far):
36+
### Tested On (so far)
3337

3438
#### Browsers
35-
<ul>
36-
<li>FireFox 80.0</li>
37-
<li>Chrome 85.0</li>
38-
<li>Microsoft Edge 85.0</li>
39-
<li>IE 11.x</li>
40-
</ul>
4139

40+
- FireFox 80.0
41+
- Chrome 85.0
42+
- Microsoft Edge 85.0
43+
- IE 11.x
4244

43-
#### Oracle APEX Versions
44-
<ul>
45-
<li>Application Express 18.1</li>
46-
<li>Application Express 18.2</li>
47-
<li>Application Express 19.1</li>
48-
<li>Application Express 19.2</li>
49-
<li>Application Express 20.1</li>
50-
<li>Application Express 20.2</li>
51-
</ul>
45+
### Oracle APEX Versions
5246

47+
- Application Express 18.1
48+
- Application Express 18.2
49+
- Application Express 19.1
50+
- Application Express 19.2
51+
- Application Express 20.1
52+
- Application Express 20.2
5353

5454
## Item settings
5555

@@ -58,57 +58,76 @@ https://apex.oracle.com/pls/apex/f?p=122979
5858
#### Interactive Grid
5959

6060
##### Settings
61+
6162
Here you can set up options of your AutoNumeric field. For more options and details please visit AutoNumeric [configurator](http://autonumeric.org/configurator).
63+
6264
##### Aliment
65+
6366
Filed uses aliment defined by column attribute.
67+
6468
##### 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.
6671
With this we set padding:0px;
6772

6873
#### Form item
6974

7075
##### Settings
76+
7177
Here you can set up options of your AutoNumeric field. For more options and details please visit AutoNumeric [configurator](http://autonumeric.org/configurator).
78+
7279
##### Usage
80+
7381
It can be used with following sample :
74-
<pre>
82+
83+
```javascript
7584
apex.item("ITEM_NAME").setValue("3432.32");
7685
apex.item("ITEM_NAME").getValue();
77-
</pre>
86+
```
87+
7888
##### Aliment
79-
Field is basically text field, but can be align with a "Advanced Custom Attribute" setting :<br/>
80-
style="text-align:right;"
8189

90+
Field is basically text field, but can be align with a "Advanced Custom Attribute" setting
91+
92+
```style="text-align:right;"```
8293

8394
### Examples
95+
8496
#### Default
85-
<pre>
97+
98+
```json
8699
{
87100
currencySymbol: " €",
88101
currencySymbolPlacement: "s"
89102
}
90-
</pre><br>
103+
```
104+
91105
#### Format 1.000.000,00
92-
<pre>
106+
107+
```json
93108
{
94109
currencySymbol: " €",
95110
currencySymbolPlacement: "s",
96111
decimalCharacter: ",",
97112
decimalCharacterAlternative: ".",
98113
digitGroupSeparator: "."
99114
}
100-
</pre><br>
115+
```
116+
101117
#### Simple style
102-
<pre>
118+
119+
```json
103120
{
104121
styleRules: {
105122
positive: "u-color-4",
106123
negative: "u-color-9"
107124
}
108125
}
109-
</pre><br>
126+
```
127+
110128
#### Range style
111-
<pre>
129+
130+
```json
112131
{ currencySymbol: " %",
113132
currencySymbolPlacement: "s",
114133
styleRules: {
@@ -136,11 +155,13 @@ style="text-align:right;"
136155
]
137156
}
138157
}
139-
</pre>
158+
```
140159

141160
#### 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
163+
164+
```css
144165
/* Form item */
145166
.apex-item-text.apex-item-autonumeric.u-color-4:focus {
146167
background-color: #3CAF85 !important;
@@ -176,16 +197,18 @@ To use styles or range style add following css inline
176197
fill: #ED813E !important;
177198
color: #f0faf6 !important;
178199
}
179-
</pre>
180-
More on css clsses on [Universal Theme references](https://apex.oracle.com/pls/apex/apex_pm/r/ut/color-and-status-modifiers).
200+
```
181201

202+
More on css classes on [Universal Theme references](https://apex.oracle.com/pls/apex/apex_pm/r/ut/color-and-status-modifiers).
182203

183204
## About me
184-
Andrej Grlica<br/>
185-
Company The RIGHT THING Solutions<br/>
186-
I have been an Oracle APEX Developer since 2008<br/>
187-
When I'm not focusing on a code problem, you can find me on:<br/>
188-
Work Email : [[email protected]](mailto:[email protected])<br/>
189-
Private Email : [[email protected]](mailto:[email protected])<br/>
190-
LinkedIn: [Link](https://www.linkedin.com/in/andrej-grlica-303998a4/)<br/>
191-
Slack (#orclapex) PM:[@grlicaa](https://orclapex.slack.com/messages/@grlicaa/)
205+
206+
Andrej Grlica
207+
Company The RIGHT THING Solutions
208+
I have been an Oracle APEX Developer since 2008
209+
When I'm not focusing on a code problem, you can find me on:
210+
211+
- Work Email : [[email protected]](mailto:[email protected])
212+
- Private Email : [[email protected]](mailto:[email protected])
213+
- LinkedIn: [Link](https://www.linkedin.com/in/andrej-grlica-303998a4/)
214+
- Twitter: [@AndrejGrlica](https://twitter.com/AndrejGrlica)

apexplugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name" : "AutoNumeric",
3-
"version" : "4.6.0.2",
3+
"version" : "4.6.0.3",
44
"description" : "Oracle Application Express item Plug-in for AutoNumeric format (Page item and Interactive Grid)",
55
"keywords" : ["auto", "numeric", "auto numeric", "numeric mask", "format mask"],
66
"homepage" : "https://github.com/grlicaa/AutoNumeric",

docs/css/ANinit.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/css/ANinit.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/css/ANinit.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)