diff --git a/src/sunstone/public/js/plugins/marketplace-tab.js b/src/sunstone/public/js/plugins/marketplace-tab.js index 8b511dfc46..77dab8142b 100644 --- a/src/sunstone/public/js/plugins/marketplace-tab.js +++ b/src/sunstone/public/js/plugins/marketplace-tab.js @@ -280,7 +280,9 @@ function updateMarketInfo(request,app){ function onlyOneCheckboxListener(dataTable) { $('tbody input.check_item', dataTable).live("change", function(){ var checked = $(this).is(':checked'); + $('td', dataTable).removeClass('markrowchecked'); $('input.check_item:checked', dataTable).removeAttr('checked'); + $("td", $(this).closest('tr')).addClass('markrowchecked') $(this).attr('checked', checked); }); }