Responsive is not working on dynamically added element and events

Responsive is not working on dynamically added element and events

anand kasilingamanand kasilingam Posts: 1Questions: 1Answers: 0

Datatable elements on full screen are getting fired on events and fnrowcallback functions. But when in responsive, events and fnrowcallback doesn't get fired.

For example
These events and function are not getting fired when in responsive.

"fnRowCallback" : function(nRow,aData,iDisplayIndex)
         { $('td:eq(0)',nRow).html(view(aData));}  
        
 $(".element1").click(funcition(){//do stuff});

 $(".element1").getAddress();

Here is the jsfiddle. Click on "change salary font button" it will change salary column font and resize it to responsive, you can observe that font is not changed in salary column value.

This discussion has been closed.