Currently what i get against my every table row is
I am adding data-title attributes using
what i want to accomplish is to get my value instead of abc for data-title attribute in table row, is their any way of doing this in datatables? My data comes from serverside as
Thanks in advance for help.
<tr id="123" class="odd" data-title="abc">
I am adding data-title attributes using
"fnCreatedRow": function (nRow, aData, iDataIndex) { $(nRow).attr('data-title', 'abc'); }
what i want to accomplish is to get my value instead of abc for data-title attribute in table row, is their any way of doing this in datatables? My data comes from serverside as
{"sEcho":"1","iTotalRecords":193,"iTotalDisplayRecords":193,"aaData":[{"UserId":0,"DT_RowId":123, "Data_Title": "Test"}]}
Thanks in advance for help.