0
Previously I wrote directly in TD the text and did not break line, but I needed it to be written in JS, but when inserting in JS happens to break line as in the image below:
HTML
<th data-sortable="false" data-field="ID" data-switchable="false" data-card-visible="false" data-formatter="fe" class="acoes" style="white-space: nowrap;"></th>
JS
$('.acoes').html('Preços | Alunos | Associar Vendedor | Desassociar Vendedor | Upload | Configuração');
Q.S.: Previously it was not passed the style="white-space: nowrap;" and it worked normally, as gave this problem added for resolution attempt.
Testing here there was no line break.
– Sam
here on all screens happens the same thing, and editing directly on F12, works the way I wanted, not know what could be done
– Matheus Muniz
Put the full table and the CSS related to it in the question. This is the only way to better analyze and try to reproduce the problem. There may be something else influencing this.
– Sam
The table is automatically generated by data coming from the BD
– Matheus Muniz