Technology Blogs by SAP
Learn how to extend and personalize SAP applications. Follow the SAP technology blog for insights into SAP BTP, ABAP, SAP Analytics Cloud, SAP HANA, and more.
cancel
Showing results for 
Search instead for 
Did you mean: 
yaron_ganor
Explorer
0 Kudos

Hi,

If you've been using InPlaceEdit with a TextArea you probably noticed that it has stopped responding to changes.

This is due to recent changes which are described here.

If you still want to leverage the benefits of TextArea combined with InPlaceEdit, a simple workaround can be used.

After defining a textArea control with a change function:

textArea.attachBrowserEvent("blur", textArea.onsapfocusleave);

textArea.onsapfocusleave = function(){

textArea.fireChange();

        };

Have fun.

byg.

4 Comments