datatable render columns js below:
"columns" : [null,
{ render : function(data, type, row, meta) {
return '<input type="checkbox"/>'
}
} ,
{ render : function(data, type, row, meta) {
return row[3];
},
},
null,]
I want to add dbclick function and specific id to td row[3] so it will be like
<td id='address_row[0]' ondblclick='divDblClick(this)'>row[3]</td>