My ASP.NET MVC controller methods return JSON in the following format:
[
{"Id":837,"Name":"aaa"},
{"Id":838,"Name":"bbb"}
]
How can I use this without converting it to a the 2D array JSON format DataTables uses in its examples?
[
{"Id":837,"Name":"aaa"},
{"Id":838,"Name":"bbb"}
]
How can I use this without converting it to a the 2D array JSON format DataTables uses in its examples?