Users should be able to input text in a textarea field
<div class="col-12 col-sm-12 col-md-12 col-lg-12 col-xl-12 p-0">
<div class="blu-heading">Clarification Remarks</div>
<div class="table-responsive tabledesign">
<table class="table table-bordered" id="mytable1">
<thead>
<tr>
<th>Sr.No.</th>
<th scope="col">Remarks</th>
<th scope="col">Date of Query</th>
<th scope="col">User Remarks</th>
<th scope="col">Date of Reply</th>
</tr>
</thead>
<tbody>
<c:forEach items="${lmApplicationRemarks}" var="doc" varStatus="status">
<tr>
<td>${status.index + 1}</td>
<td>${doc.remarks}</td>
<td>
<fmt:formatDate value="${doc.dateQuery}" pattern="dd/MM/yyyy" />
</td>
<td>${doc.userRemarks}</td>
<td>
<fmt:formatDate value="${doc.dateReply}" pattern="dd/MM/yyyy" />
</td>
</tr>
</c:forEach>
</tbody>
</table>
</div>
</div>
My current output looks like this:
1. Please update full detailed address of the factory location on the application. 2. You are requested to submit suggested/estimated turnover from the project for the next 3-5 years. 3. You are requested to provide a declaration stating that the company abides by the Press No.
I want it to look like this:
1. Please update full detailed address of the factory location on the application.
2. You are requested to submit suggested/estimated turnover from the project for the next 3-5 years.
3. You are requested to provide a declaration stating that the company abides by the Press No.