Oracle APEX hide the x on the modal dialogonload hidding a region with modalformORACLE APEX - Submit Parent Page on Closing only ONE Modal Dialog out of many such Modal DialogsHow to run a process after page submit and before refreshOracle Apex Submit and Open modal in the same timeClose modal inline dialog by clicking on button in sub-region and prevent it from re-openingModal dialog - refresh the parent page on close modal dialog or submit buttonOracle APEX 5.1.1 Hiding toolbar Actions buttonOracle Apex 18.2 - Prevent closing of Non- modal dialog on clicking outsideOracle APEX - Dynamic action after cancelling a modal dialogPage redirect does not work but works in Debug mode
List of Implementations for common OR problems
Interview Question - Card betting
Motorcyle Chain needs to be cleaned every time you lube it?
Refund Oyster Card online
Why is the order of my features changed when using readFeatures in OpenLayers v4.6.5?
Why did C++11 make std::string::data() add a null terminating character?
How can solar sailed ships be protected from space debris?
Sleepy tired vs physically tired
Convenience stores in India
Who are the police in Hong Kong?
Should I cheat if the majority does it?
What does the ash content of broken wheat really mean?
Is it bad to suddenly introduce another element to your fantasy world a good ways into the story?
What happens if the limit of 4 billion files was exceeded in an ext4 partition?
CPA filed late returns, stating I would get money; IRS says they were filed too late
Book series about using wormholes and time travel to reduce decades of space travel to days
What do you call the angle of the direction of an airplane?
Did Snape really give Umbridge a fake Veritaserum potion that Harry later pretended to drink?
How serious is plagiarism in a master’s thesis?
Does Evolution Sage proliferate Blast Zone when played?
What is the difference between a historical drama and a period drama?
Are there advantages in writing by hand over typing out a story?
Should I hide my travel history to the UK when I apply for an Australian visa?
What is this arch-and-tower near a road?
Oracle APEX hide the x on the modal dialog
onload hidding a region with modalformORACLE APEX - Submit Parent Page on Closing only ONE Modal Dialog out of many such Modal DialogsHow to run a process after page submit and before refreshOracle Apex Submit and Open modal in the same timeClose modal inline dialog by clicking on button in sub-region and prevent it from re-openingModal dialog - refresh the parent page on close modal dialog or submit buttonOracle APEX 5.1.1 Hiding toolbar Actions buttonOracle Apex 18.2 - Prevent closing of Non- modal dialog on clicking outsideOracle APEX - Dynamic action after cancelling a modal dialogPage redirect does not work but works in Debug mode
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I tried to hide the x on the upper right-hand corner of my modal dialog window using both css and JQuery but nothing owrks. I tries using dynamic action on page load:
$("button.ui-button.ui-corner-all.ui-widget.ui-button-icon-only.ui-dialog-titlebar-close").hide();
and to use css:
button.ui-button.ui-widget.ui-state-default.ui-corner-all.ui-button-icon-only.ui-dialog-titlebar-close
visibility: hidden !important;
for my inline css but neither worked, the x still shows up
oracle-apex oracle-apex-5.1
add a comment |
I tried to hide the x on the upper right-hand corner of my modal dialog window using both css and JQuery but nothing owrks. I tries using dynamic action on page load:
$("button.ui-button.ui-corner-all.ui-widget.ui-button-icon-only.ui-dialog-titlebar-close").hide();
and to use css:
button.ui-button.ui-widget.ui-state-default.ui-corner-all.ui-button-icon-only.ui-dialog-titlebar-close
visibility: hidden !important;
for my inline css but neither worked, the x still shows up
oracle-apex oracle-apex-5.1
add a comment |
I tried to hide the x on the upper right-hand corner of my modal dialog window using both css and JQuery but nothing owrks. I tries using dynamic action on page load:
$("button.ui-button.ui-corner-all.ui-widget.ui-button-icon-only.ui-dialog-titlebar-close").hide();
and to use css:
button.ui-button.ui-widget.ui-state-default.ui-corner-all.ui-button-icon-only.ui-dialog-titlebar-close
visibility: hidden !important;
for my inline css but neither worked, the x still shows up
oracle-apex oracle-apex-5.1
I tried to hide the x on the upper right-hand corner of my modal dialog window using both css and JQuery but nothing owrks. I tries using dynamic action on page load:
$("button.ui-button.ui-corner-all.ui-widget.ui-button-icon-only.ui-dialog-titlebar-close").hide();
and to use css:
button.ui-button.ui-widget.ui-state-default.ui-corner-all.ui-button-icon-only.ui-dialog-titlebar-close
visibility: hidden !important;
for my inline css but neither worked, the x still shows up
oracle-apex oracle-apex-5.1
oracle-apex oracle-apex-5.1
asked Mar 25 at 15:18
Coding DuchessCoding Duchess
2,6827 gold badges35 silver badges99 bronze badges
2,6827 gold badges35 silver badges99 bronze badges
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
The div where this button is showed is rendered in the parent page, so to get it in the modal page, you need to add "parent" in the beginning of your javarscript.
try this:
var button = parent.$('.ui-dialog-titlebar-close'); //get the button
button.hide(); //hide the button
I do not recommend doing this. It's always best to build your page so you do not need changes like this. If you want to close your modal after running a process, then you can create a process to close the modal.
– romeuBraga
May 22 at 18:58
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%2f55341051%2foracle-apex-hide-the-x-on-the-modal-dialog%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
The div where this button is showed is rendered in the parent page, so to get it in the modal page, you need to add "parent" in the beginning of your javarscript.
try this:
var button = parent.$('.ui-dialog-titlebar-close'); //get the button
button.hide(); //hide the button
I do not recommend doing this. It's always best to build your page so you do not need changes like this. If you want to close your modal after running a process, then you can create a process to close the modal.
– romeuBraga
May 22 at 18:58
add a comment |
The div where this button is showed is rendered in the parent page, so to get it in the modal page, you need to add "parent" in the beginning of your javarscript.
try this:
var button = parent.$('.ui-dialog-titlebar-close'); //get the button
button.hide(); //hide the button
I do not recommend doing this. It's always best to build your page so you do not need changes like this. If you want to close your modal after running a process, then you can create a process to close the modal.
– romeuBraga
May 22 at 18:58
add a comment |
The div where this button is showed is rendered in the parent page, so to get it in the modal page, you need to add "parent" in the beginning of your javarscript.
try this:
var button = parent.$('.ui-dialog-titlebar-close'); //get the button
button.hide(); //hide the button
The div where this button is showed is rendered in the parent page, so to get it in the modal page, you need to add "parent" in the beginning of your javarscript.
try this:
var button = parent.$('.ui-dialog-titlebar-close'); //get the button
button.hide(); //hide the button
answered Mar 25 at 18:42
romeuBragaromeuBraga
1,4901 gold badge4 silver badges16 bronze badges
1,4901 gold badge4 silver badges16 bronze badges
I do not recommend doing this. It's always best to build your page so you do not need changes like this. If you want to close your modal after running a process, then you can create a process to close the modal.
– romeuBraga
May 22 at 18:58
add a comment |
I do not recommend doing this. It's always best to build your page so you do not need changes like this. If you want to close your modal after running a process, then you can create a process to close the modal.
– romeuBraga
May 22 at 18:58
I do not recommend doing this. It's always best to build your page so you do not need changes like this. If you want to close your modal after running a process, then you can create a process to close the modal.
– romeuBraga
May 22 at 18:58
I do not recommend doing this. It's always best to build your page so you do not need changes like this. If you want to close your modal after running a process, then you can create a process to close the modal.
– romeuBraga
May 22 at 18:58
add a comment |
Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.
Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.
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%2f55341051%2foracle-apex-hide-the-x-on-the-modal-dialog%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