Oracle Apex- Interactive Grid- Reset Button
In the Interactive Grid Toolbars of Oracle APEX, How can we make the reset button to show as icon only button.
oracle-apex oracle-apex-5 oracle-apex-5.1
add a comment |
In the Interactive Grid Toolbars of Oracle APEX, How can we make the reset button to show as icon only button.
oracle-apex oracle-apex-5 oracle-apex-5.1
add a comment |
In the Interactive Grid Toolbars of Oracle APEX, How can we make the reset button to show as icon only button.
oracle-apex oracle-apex-5 oracle-apex-5.1
In the Interactive Grid Toolbars of Oracle APEX, How can we make the reset button to show as icon only button.
oracle-apex oracle-apex-5 oracle-apex-5.1
oracle-apex oracle-apex-5 oracle-apex-5.1
edited Nov 12 '18 at 17:01
Praveen Kumar K
asked Nov 12 '18 at 15:38
Praveen Kumar KPraveen Kumar K
213
213
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
I found another way by adding the jsinitialization code in the attribute section of Interactive Grid as below
function(config) {
var $ = apex.jQuery,
toolbarData = $.apex.interactiveGrid.copyDefaultToolbar(),
lastToolbarGroup = toolbarData[toolbarData.length - 1],
createButton = {
type: "BUTTON",
icon: "a-Icon icon-ig-reset",
iconOnly: true,
action: "reset-report"
};
lastToolbarGroup.controls.pop();
lastToolbarGroup.controls.push(createButton);
config.toolbarData = toolbarData;
config.initialSelection = false;
return config;
}
This way is better.
– romeuBraga
Nov 12 '18 at 19:49
add a comment |
I do not think I understood your question ... :) but...
I do not think there is a way to edit this feature of interactive grid. It is possible through javascript, but I think it is an unnecessary work.
$('button[data-action=reset-report] > span.a-Button-label').remove()
Or CSS
button[data-action=reset-report] > span.a-Button-label {
display: none;
}
Thanks for the help, I thought that making the icon only button increase the effective utilization of toolbar space in lower resolutions
– Praveen Kumar K
Nov 12 '18 at 17:53
Ah yes, in this case it makes sense.
– romeuBraga
Nov 12 '18 at 18:00
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53265438%2foracle-apex-interactive-grid-reset-button%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
I found another way by adding the jsinitialization code in the attribute section of Interactive Grid as below
function(config) {
var $ = apex.jQuery,
toolbarData = $.apex.interactiveGrid.copyDefaultToolbar(),
lastToolbarGroup = toolbarData[toolbarData.length - 1],
createButton = {
type: "BUTTON",
icon: "a-Icon icon-ig-reset",
iconOnly: true,
action: "reset-report"
};
lastToolbarGroup.controls.pop();
lastToolbarGroup.controls.push(createButton);
config.toolbarData = toolbarData;
config.initialSelection = false;
return config;
}
This way is better.
– romeuBraga
Nov 12 '18 at 19:49
add a comment |
I found another way by adding the jsinitialization code in the attribute section of Interactive Grid as below
function(config) {
var $ = apex.jQuery,
toolbarData = $.apex.interactiveGrid.copyDefaultToolbar(),
lastToolbarGroup = toolbarData[toolbarData.length - 1],
createButton = {
type: "BUTTON",
icon: "a-Icon icon-ig-reset",
iconOnly: true,
action: "reset-report"
};
lastToolbarGroup.controls.pop();
lastToolbarGroup.controls.push(createButton);
config.toolbarData = toolbarData;
config.initialSelection = false;
return config;
}
This way is better.
– romeuBraga
Nov 12 '18 at 19:49
add a comment |
I found another way by adding the jsinitialization code in the attribute section of Interactive Grid as below
function(config) {
var $ = apex.jQuery,
toolbarData = $.apex.interactiveGrid.copyDefaultToolbar(),
lastToolbarGroup = toolbarData[toolbarData.length - 1],
createButton = {
type: "BUTTON",
icon: "a-Icon icon-ig-reset",
iconOnly: true,
action: "reset-report"
};
lastToolbarGroup.controls.pop();
lastToolbarGroup.controls.push(createButton);
config.toolbarData = toolbarData;
config.initialSelection = false;
return config;
}
I found another way by adding the jsinitialization code in the attribute section of Interactive Grid as below
function(config) {
var $ = apex.jQuery,
toolbarData = $.apex.interactiveGrid.copyDefaultToolbar(),
lastToolbarGroup = toolbarData[toolbarData.length - 1],
createButton = {
type: "BUTTON",
icon: "a-Icon icon-ig-reset",
iconOnly: true,
action: "reset-report"
};
lastToolbarGroup.controls.pop();
lastToolbarGroup.controls.push(createButton);
config.toolbarData = toolbarData;
config.initialSelection = false;
return config;
}
answered Nov 12 '18 at 18:02
Praveen Kumar KPraveen Kumar K
213
213
This way is better.
– romeuBraga
Nov 12 '18 at 19:49
add a comment |
This way is better.
– romeuBraga
Nov 12 '18 at 19:49
This way is better.
– romeuBraga
Nov 12 '18 at 19:49
This way is better.
– romeuBraga
Nov 12 '18 at 19:49
add a comment |
I do not think I understood your question ... :) but...
I do not think there is a way to edit this feature of interactive grid. It is possible through javascript, but I think it is an unnecessary work.
$('button[data-action=reset-report] > span.a-Button-label').remove()
Or CSS
button[data-action=reset-report] > span.a-Button-label {
display: none;
}
Thanks for the help, I thought that making the icon only button increase the effective utilization of toolbar space in lower resolutions
– Praveen Kumar K
Nov 12 '18 at 17:53
Ah yes, in this case it makes sense.
– romeuBraga
Nov 12 '18 at 18:00
add a comment |
I do not think I understood your question ... :) but...
I do not think there is a way to edit this feature of interactive grid. It is possible through javascript, but I think it is an unnecessary work.
$('button[data-action=reset-report] > span.a-Button-label').remove()
Or CSS
button[data-action=reset-report] > span.a-Button-label {
display: none;
}
Thanks for the help, I thought that making the icon only button increase the effective utilization of toolbar space in lower resolutions
– Praveen Kumar K
Nov 12 '18 at 17:53
Ah yes, in this case it makes sense.
– romeuBraga
Nov 12 '18 at 18:00
add a comment |
I do not think I understood your question ... :) but...
I do not think there is a way to edit this feature of interactive grid. It is possible through javascript, but I think it is an unnecessary work.
$('button[data-action=reset-report] > span.a-Button-label').remove()
Or CSS
button[data-action=reset-report] > span.a-Button-label {
display: none;
}
I do not think I understood your question ... :) but...
I do not think there is a way to edit this feature of interactive grid. It is possible through javascript, but I think it is an unnecessary work.
$('button[data-action=reset-report] > span.a-Button-label').remove()
Or CSS
button[data-action=reset-report] > span.a-Button-label {
display: none;
}
answered Nov 12 '18 at 17:23
romeuBragaromeuBraga
1,2291215
1,2291215
Thanks for the help, I thought that making the icon only button increase the effective utilization of toolbar space in lower resolutions
– Praveen Kumar K
Nov 12 '18 at 17:53
Ah yes, in this case it makes sense.
– romeuBraga
Nov 12 '18 at 18:00
add a comment |
Thanks for the help, I thought that making the icon only button increase the effective utilization of toolbar space in lower resolutions
– Praveen Kumar K
Nov 12 '18 at 17:53
Ah yes, in this case it makes sense.
– romeuBraga
Nov 12 '18 at 18:00
Thanks for the help, I thought that making the icon only button increase the effective utilization of toolbar space in lower resolutions
– Praveen Kumar K
Nov 12 '18 at 17:53
Thanks for the help, I thought that making the icon only button increase the effective utilization of toolbar space in lower resolutions
– Praveen Kumar K
Nov 12 '18 at 17:53
Ah yes, in this case it makes sense.
– romeuBraga
Nov 12 '18 at 18:00
Ah yes, in this case it makes sense.
– romeuBraga
Nov 12 '18 at 18:00
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53265438%2foracle-apex-interactive-grid-reset-button%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown