Certainly it must be possible to fire the cancel action on an Ajax.InPlaceEditor without clicking the Cancel button. But I just cannot figure out how to do it.

Any suggestions?

link|improve this question

75% accept rate
feedback

1 Answer

Just went though scriptaculous source, and found it:

  • When you hit cancel, it triggers handleFormCancellation, that triggers wrapUp, that triggers leaveEditMode and onComplete callback.

Thing is, wrapUp is defined as:

 wrapUp: function(transport)

so you can pass null as transport when calling it.

leaveEditMode is parameter-less so, you don't need to worry about null values in callbacks. Although, guess any of this two should work.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.