I tried "mRender" and got what I required
Jquery:
$('#tblUserSalaryDetails').dataTable({
"bJQueryUI": true,
"bAutoWidth": false,
"bProcessing": true,
"bDestroy":true,
"bPaginate": true,
"aLengthMenu": [[5, 10, 25, 50, 100, -1], [5, 10, 25, 50, 100, "All"]],
"iDisplayLength": 10,
"ServerSide": true,
"bFilter": true,
"bScrollAutoCss": true,
"bSort": true,
"bInfo": false,
"sAjaxSource": '@Url.Action("getUserDetails","Home")',
"aoColumns": [
{ sWidth: '2%', "mData": "Sno", "bSortable": false, "sClass": "center", "sTitle": "S.No", "bSearchable": false },
{ sWidth: '4%', "mData": "EmpID", "sClass": "center", "sTitle": "Emp Id" },
{ sWidth: '7%', "mData": "EmpSalary", "sClass": "center", "sTitle": "Emp Salary" },
{
"bSortable": false, "mData": null, "sTitle": "Actions", "bSearchable": false, "mRender": function () {
return '<img alt="Edit" src="/Content/images/ApplicationSetup/Action-edit-icon.png" title="Edit" style="height:18px;width:19px;cursor:pointer;" /> <img alt="Delete" src="/Content/images/ApplicationSetup/Trash-can-icon.png" title="Delete" style="height:18px;width:19px;cursor:pointer" />';
}
}
],
"sAjaxDataProp": "EmpSalDetails",
"sPaginationType": "full_numbers",
"oLanguage": {
"sZeroRecords": "No Records Found"
},
"aoColumnDefs": [
{ "sWidth": "9%", "aTargets": [-1] }
]
});