Boa tarde, Alguem sabe se é possível fazer quebra de linha em input de tabela Pai-Filho? Estou tentando usar dois input textarea mas o texto nao quebra a linha.
Aqui o HTML:
<table tablename="assentamento" class="table" noaddbutton="true" nodeletebutton="true" cellspacing="0">
<thead>
<tr class="tableHeadRow">
<th class="tableColumn">Assentamento</th>
<th class="tableColumn">Descrição</th>
</tr>
</thead>
<tbody>
<tr>
<td class="form-group col-md-4 col-sm-3 fs-break-text" rowspan="2"><input type="textarea" rows="2" class="form-control fs fs-wrap fs-break-text" name="interacao" id="interacao"></td>
<td class="form-group" rowspan="2"><input type="textarea" class="form-control" rows="3" name="rowAssentamento" id="rowAssentamento"></td>
</tr>
</tbody>
</table>