Remove Submit Button from Dialog

pedro.caetano@groupm.com September 26, 2018

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!

1 answer

0 votes
Ajay _view26_
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
November 13, 2018
AP.dialog.getButton('submit').hide(); 

 works for me !

Kin November 23, 2020

Thnx, pretty strange this is not an option parameter in AP.dialog.create

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events