I am developing an Ionic / Cordova application. There textareais where the user can enter some data that is transmitted to the server.
Here the user should be able to enter line breaks. The problem that I am now facing is that it is possible only after entering the first character; and it’s impossible to start with a line break. ng-modeldisables initial line breaks. How can I achieve my goal?
textarea as follows:
<textarea ng-model="card.text" id="text-message" rows="20"></textarea>
Thank.
source
share