I'm using Datatables to display about 20 records and one of my columns contains a group of buttons. One of those buttons is a simple toggle button that, when clicked, sends an AJAX request back to the server and then updates the button (starred vs. not starred using Font Awesome icons) based on the response. The button and AJAX request seem to work fine, but I can't seem to make the star fill in or empty after the AJAX call. Here is my JS:
$(function () {
$('.btn-is_starred').click(function(e) {
e.preventDefault();
$.post( $(this).attr('href'), function( data ) {
if (data.is_starred == true) {
$(this).html('<i class="fa fa-star"></i>');
}
else {
$(this).html('<i class="fa fa-star-o"></i>');
}
});
});
});
Any advice?
You need to use delegated event handlers because links get recreated when table is redrawn.
Below is a sample code that you need to update to match your structure:
See the example below. I have replaced
$.post
with setting data propertyis_starred
for the sake of simplicity of the example.See jQuery DataTables – Why click event handler does not work for more information.