The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Hello,
From my atlassian.connect.json I have:
{
"modules": {
"dialogs": [
{
"url": "/rightDialogContext/?issueKey={issue.key}",
"options": { "size": "X-LARGE", "header": { "value": "Planning Info" } },
"key": "dialog-module-key"
}
],
...
}
I have been trying to remove the "Submit" button from the dialog window without success. I have seen the same issue but for Web Items dialogs. I am creating this window calling this function in my code:
AP_OpenDialog () {
console.log('Calling Dialog...');
AP.dialog.create({
key: 'dialog-module-key',
width: '500px',
height: '200px',
chrome: true,
}).on('close', ( data ) => { console.log('Dialog Closed! ', data); }); }
And am trying, as documented, to remove it with this line:
AP.dialog.getButton('submit').disable();
Also, setting "chrome" to false was not a good option because it would de-format the window, making it transparent.
Is there any other way of doing this or am I implementing it wrong?
Thank you!
AP.dialog.getButton('submit').hide();
works for me !
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This month the spotlight is on AppLiger. We caught up with Pavel Pavlovsky, CEO and Product Manager, to learn how the company started and what fuels the team's creativity. Atlassian:...
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.