Skip to content

Commit 2a98f50

Browse files
Fixing issue #1
1 parent ebe55d5 commit 2a98f50

9 files changed

+13
-11
lines changed

.gitignore

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
.DS_Store
2-
node_modules
1+
.DS_Store/
2+
node_modules/
33
dist/css/*.map
44
dist/css/ca_trevis_apex_ig_simple_checkbox.css
55
dist/js/*.map
66
dist/js/ca_trevis_apex_ig_simple_checkbox.bundle.js
7+
dist/plsql/

apexplugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name" : "IG Simple Checkbox",
3-
"version" : "18.2.0",
3+
"version" : "18.2.1",
44
"description" : "This plug-in displays a single checkbox in Interactive Grids but allows you to set 2 values (one for checked and another for unchecked). It's perfect for Y(es)/N(o) or 1/0 type checkboxes.",
55
"keywords" : ["checkbox", "ig", "simple"],
66
"homepage" : "https://github.com/rafael-trevisan/apex-plugin-ig_simple_checkbox",

changelog.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
# Changelog
22

3+
## 18.2.1
4+
- Hot fix for [Issue #1](https://github.com/rafael-trevisan/apex-plugin-ig_simple_checkbox/issues/1)
5+
36
## 18.2.0
47
- Initial Release

dist/css/ca_trevis_apex_ig_simple_checkbox.min.css

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

dist/js/ca_trevis_apex_ig_simple_checkbox.bundle.min.js

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

item_type_plugin_ca_trevis_apex_ig_simple_checkbox.sql renamed to ig_simple_checkbox.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ wwv_flow_api.create_plugin(
6868
' sys.htp.prn(',
6969
' apex_string.format(',
7070
' ''<input type="text" %s id="%s" value="%s"/>''',
71-
' , apex_plugin_util.get_element_attributes(p_item, p_item.name, ''apex-item-igsimplecheckbox apex-item-plugin'')',
71+
' , apex_plugin_util.get_element_attributes(p_item, c_name, ''apex-item-igsimplecheckbox apex-item-plugin'')',
7272
' , p_item.name',
7373
' , case when p_param.value is null then '''' else ltrim( rtrim ( c_escaped_value ) ) end',
7474
' )',
@@ -129,7 +129,7 @@ wwv_flow_api.create_plugin(
129129
,p_standard_attributes=>'VISIBLE:SESSION_STATE:READONLY:SOURCE:ICON:ENCRYPT'
130130
,p_substitute_attributes=>true
131131
,p_subscribe_plugin_settings=>true
132-
,p_version_identifier=>'18.2.0'
132+
,p_version_identifier=>'18.2.1'
133133
,p_about_url=>'https://github.com/rafael-trevisan/apex-plugin-ig_simple_checkbox'
134134
,p_files_version=>5
135135
);

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "apex-plugin-ig_simple_checkbox",
3-
"version": "18.2.0",
3+
"version": "18.2.1",
44
"description": "This plug-in displays a single checkbox in Interactive Grids but allows you to set 2 values (one for checked and another for unchecked). It's perfect for Y(es)/N(o) or 1/0 type checkboxes.",
55
"main": "item_type_plugin_ca_trevis_apex_ig_simple_checkbox.sql",
66
"scripts": {

readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ set 2 values (one for checked and another for unchecked). It's perfect for Y(es)
1010
![](https://github.com/rafael-trevisan/apex-plugin-ig_simple_checkbox/blob/master/docs/img/ig-simple-checkbox-example.png)
1111

1212
## Install
13-
- Import plugin file `item_type_plugin_ca_trevis_apex_ig_simple_checkbox.sql` from root directory into your application.
13+
- Import plugin file `ig_simple_checkbox.sql` from root directory into your application.
1414

1515
## Demo Application
1616
[https://apex.oracle.com/pls/apex/f?p=trevis:ig-simple-checkbox](https://apex.oracle.com/pls/apex/f?p=trevis:ig-simple-checkbox)

src/plsql/ca_trevis_apex_ig_simple_checkbox.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ begin
3333
sys.htp.prn(
3434
apex_string.format(
3535
'<input type="text" %s id="%s" value="%s"/>'
36-
, apex_plugin_util.get_element_attributes(p_item, p_item.name, 'apex-item-igsimplecheckbox apex-item-plugin')
36+
, apex_plugin_util.get_element_attributes(p_item, c_name, 'apex-item-igsimplecheckbox apex-item-plugin')
3737
, p_item.name
3838
, case when p_param.value is null then '' else ltrim( rtrim ( c_escaped_value ) ) end
3939
)

0 commit comments

Comments
 (0)