The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

inline editing save button click

Murugesan Guruswamy
February 2, 2013

Hi,

I am able to get the values of the component field values as suggested by Jobin (https://answers.atlassian.com/questions/131186/inline-editing-validation/131669) with some slight modifications to the javascript.

I wanted to have a check triggered during the save button ("tick button) that is in inline edit and I dont see the following triggered at all. Any help is appreciated. "aui-button submit" is inside the save-options div during inline editing.

AJS.$(".aui-button.submit").live("click",(function(event) {

alert("got it");

console.log("clicked");

})));

2 answers

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

Post a new question

1 vote
peter_varga
December 2, 2015

Hi,

maybe it is not relevant any more to you, but I have just solved the problem. I guess it can be helpful to others.

 

        JIRA.bind(JIRA.Events.NEW_CONTENT_ADDED, function(e, context, reason) {

            if (reason === JIRA.CONTENT_ADDED_REASON.inlineEditStarted) {

               var $submitBtn = AJS.$('.aui-button.submit', context);

               $submitBtn.click(function() {

               alert('Clicked');

                });

            }

        });

Greetings,

Peter

 

0 votes
HaarikaM
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Champions.
October 22, 2013

Hi Murugesan,

I am working with something similar and have the same issue. Did you figure out any approaches to handle the click of save button?

TAGS
AUG Leaders

Atlassian Community Events