Base solution for your next web application
Open Closed

Problems swapping out input type="text" with textarea in modal popup #9470


User avatar
0
ianbaddock created

Has anyone attempted to swap out a text field for a text area within the Modal popup and had any issues?

*** this is the text area which renders perfectly fine**

  • **This is text area code which breaks the modal

screenshot below of what happens to the modal - is there a limitation where I can't use a textarea? we are on Abp.AspNetCore Version=5.1.0


1 Answer(s)
  • User Avatar
    0
    ismcagdas created
    Support Team

    Hi,

    It might be related to value of Model.ClaimLine.Notes. You should use it like below;

    <textarea class="form-control" rows="2">
        @Model.ClaimLine.Notes
    </textarea>