How to display spesial character on serverside datatable

How to display spesial character on serverside datatable

andrisnandrisn Posts: 1Questions: 0Answers: 0

hai, can please you help me
I have problem to show spesial caharacter like µm or °C when I moved to use serverside, can somebody help?

Replies

  • kthorngrenkthorngren Posts: 20,992Questions: 26Answers: 4,887

    Start by looking at the JSON response using the browser's network inspector. What do you see where you expect these special characters?

    Can you post an example record from the JSON response and your Datatables init code?

    Kevin

  • allanallan Posts: 62,858Questions: 1Answers: 10,344 Site admin

    My guess is that you need to specify the page, or the JSON as UTF-8. Perhaps:

    <meta charset="utf-8" />
    

    in the head of your document will help.

    Allan

Sign In or Register to comment.