function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
MANJOT SINGH 7MANJOT SINGH 7 

Issue with ui:InputTextArea value Binding

I have written inputTextArea as
<ui:inputTextArea aura:id="inputtextArea" rows="4" value="{!v.TextAreaValue}" keyup="{!c.onTextChange}" updateOn="keyup"/>


Above code works fine when i type in text area. but if there is grammer mistake and i right click and make suggested changes by browser then that change is not reflected(value is not getting set on TextAreaValue).
 
<ui:inputTextArea aura:id="inputtextArea" rows="4" value="{!v.TextAreaValue}" updateOn="change"/>


Above code works fine when I right click and make suggested changes by browser it is working fine but on keypress value is not getting set on TextAreaValue. How i can update on both keypress and onchange?