Skip to content

Commit 02273ee

Browse files
committed
4.6.0.4
1 parent 0100060 commit 02273ee

File tree

7 files changed

+6209
-5867
lines changed

7 files changed

+6209
-5867
lines changed

README.md

Lines changed: 32 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,16 @@ A demo application is available on
1414

1515
## Change log
1616

17+
### V 4.6.0.4 - 02.02.2021
18+
19+
- Added new parameter "Alignment" onm page item [#2](https://github.com/grlicaa/AutoNumeric/issues/2)
20+
- Fixed "Warn before exit for decimal" issue [#3](https://github.com/grlicaa/AutoNumeric/issues/3)
21+
- Read only now follows APEX conventions [#4](https://github.com/grlicaa/AutoNumeric/issues/4)
22+
- How to use global JS variable documentation [#5](https://github.com/grlicaa/AutoNumeric/issues/5)
23+
- Interactive Grid item improvements :
24+
1. Accessibility improvement ("Enter" key)
25+
2. Added support for "Placeholder" option
26+
1727
### V 4.6.0.3 - 06.12.2020
1828

1929
- Fixed "Warn on Unsaved Changes" issue [#1](https://github.com/grlicaa/AutoNumeric/issues/1)
@@ -61,21 +71,17 @@ A demo application is available on
6171

6272
Here you can set up options of your AutoNumeric field. For more options and details please visit AutoNumeric [configurator](http://autonumeric.org/configurator).
6373

64-
##### Aliment
74+
##### Alignment
6575

66-
Filed uses aliment defined by column attribute.
76+
Filed uses alignment defined by column attribute.
6777

6878
##### Padding size
6979

7080
If you use coloring css styles or ranges add class *"padding-none"* to column to get full size.
71-
With this we set padding:0px;
81+
In this plug-in default setting per IG column is "padding:0px";
7282

7383
#### Form item
7484

75-
##### Settings
76-
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-
7985
##### Usage
8086

8187
It can be used with following sample :
@@ -85,13 +91,28 @@ apex.item("ITEM_NAME").setValue("3432.32");
8591
apex.item("ITEM_NAME").getValue();
8692
```
8793

88-
##### Aliment
94+
##### Alignment
95+
96+
Is now declarative option. In case when developer don't define position. Default setting from "Component settings" will be applied.
8997

90-
Field is basically text field, but can be align with a "Advanced Custom Attribute" setting
98+
### ITEM options / examples
9199

92-
```style="text-align:right;"```
100+
In this section are some default example on how to use ITEM options. For more options and details please visit AutoNumeric [configurator](http://autonumeric.org/configurator).
93101

94-
### Examples
102+
Option can be per plug-in instance or global setting.
103+
Global setting can be in two types :
104+
1. global JS variable (page, global)
105+
Example :
106+
```javascript
107+
var an_options = {
108+
currencySymbol: " €",
109+
currencySymbolPlacement: "s",
110+
styleRules: {
111+
positive: "u-color-4",
112+
negative: "u-color-9"
113+
}
114+
};```
115+
2. substitution string (Examples: &AI_AN_OPTIONS., &APP_AN_OPTIONS.)
95116

96117
#### Default
97118

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.3",
3+
"version" : "4.6.0.4",
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/demo_app/f132.sql

Lines changed: 5808 additions & 5588 deletions
Large diffs are not rendered by default.

docs/js/ANinit.js

Lines changed: 66 additions & 72 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)