I have two columns as seen below in my datatable. I'm trying to use data-toggle tooltip to display the value of 'frequency' column when i do a mouse hover on 'name' column. What change do i need to make this happen ?
{
"mData": "name",
"render": function (data, type, full, meta) {
//var repSchedule = data.frequency;
return '<span data-toggle="tooltip" title="' + data.frequency + '">' + data + '</span>';
}
},
{
"mData": "frequency",
"mRender": function (data, type, val){
//debugger;
if(!booleanGlobalReportEditor){
return(data);
}
return "";
}
}