I am developing a simple project using bootstrap. I have this code that can create a button inside a dataTable and it is working fine. I try to put an image to it not glyphicons
by the code that I provided below as you can see.. But it's not working. But the glyphicon
icon in First button is working.
{ data: "ActionMenu", title: "Test", sClass: "alignCenter","mRender": function (data) {
return '<button type="button" class="btn btn-info btn-md action" id="checkId"><i class="fa fa-dollar fa-fw action"></i></button>'
+ ' <button type="button" class="btn btn-danger btn-md action" id="checkId2" src="Images/TestPicture.png"></button>';
}