DataTable().row(this).data() turning "
DataTable().row(this).data() turning "
LucasJr
Posts: 7Questions: 3Answers: 1
DB return that fills the table (encoding utf-8):
"SaÃdas:
12 Vcc : 12,0 a 12,4 Vcc; ripple < 28 mVpp..."
Code:
var select = $('#grid_tbl').DataTable().row(this).data();
console.log(select.wthatever);
<td> output:
"Saídas: 12 Vcc : 12,0 a 12,4 Vcc; ripple < 28 mVpp..."
console.log(select.wthatever):
"Saídas:
12 Vcc : 12,0 a 12,4 Vcc; ripple < 28 mVpp..."
This question has an accepted answers - jump to answer
This discussion has been closed.
Answers
Per the forum rules, please post a link to a test case showing the issue so we can help to debug it.
If would be helpful if you could elaborate on your question somewhat.
Allan
I figured out what was my mistake! I was taking HTML code instead DB result.
Thank you anyway