Replace text with glyphicons
Replace text with glyphicons
delphi10
Posts: 17Questions: 8Answers: 0
Data is loaded from a file with this format http://live.datatables.net/migaxogo/1/edit
I want to replace the -> and <- texts with Glyphicons after load?
A->B ... A <span class="glyphicon glyphicon-arrow-left"></span> B
This question has an accepted answers - jump to answer
Answers
You can use
columns.render
for that. This example demonstrates several uses of that - https://datatables.net/examples/basic_init/data_rendering.html ,Colin
Thx