I am using Charisma Admin Panel.
In that, jQuery datatable is used.
In my table, a row contains the following:
column1 = integer column2 = text column3 = 2 buttons (view and delete)
The View button is responsible to fetch some data from server and show that data in modal popup.
I am able to view that popup only if I am on the first page. For other pages, when I click on view button, required data is fetched from server (able to see it in firebug), but it is not showing that modal popup again.
I think it is because of live fields.
Any help please.
click event is used as follows:
$('.btn-setting').click(function(e){
e.preventDefault();
$('#myModal').modal('show');
});