Is nested dynamic table creation is possible in Datatable?
Is nested dynamic table creation is possible in Datatable?

Hi,
Please suggest me????
Regards,
vsverma
This discussion has been closed.
Hi,
Please suggest me????
Regards,
vsverma
Replies
Bootstrap example.
HTML
Javascript
PHP data
thanks alot zajc for your valuable reply.
i have give a image src for a column when data loading dynamically in table but it does not work.
Could you explain me how to set img src for a column???
"columns": [{ "data": "<img src='" + data.HOTEL_PICTURE + "'/>"}]
i got the answer. please use everyone like this
"columns": [{ "data": "HOTEL_PICTURE",
"render": function (HOTEL_PICTURE) {
return "<img src='" + HOTEL_PICTURE + "'/>";
}]