copernico Posted August 18, 2013 Share Posted August 18, 2013 Hello, I listed 190 invoices after a search that needed to be deleted. The select all checkbox in the top doesn't work, I have to select the invoices one by one. anybody else with this problem or just me? Thanks 0 Quote Link to comment Share on other sites More sharing options...
openmind Posted August 19, 2013 Share Posted August 19, 2013 If you had searched the forum you would have found this is a well known bug that is fixed in 5.3.x 0 Quote Link to comment Share on other sites More sharing options...
AndyW Posted August 22, 2013 Share Posted August 22, 2013 If you had searched the forum you would have found this is a well known bug that is fixed in 5.3.xIs 5.3.x available for download ? 0 Quote Link to comment Share on other sites More sharing options...
WHMCS Chris Posted August 22, 2013 Share Posted August 22, 2013 Is 5.3.x available for download ? Not at this time. 0 Quote Link to comment Share on other sites More sharing options...
jclarke Posted August 22, 2013 Share Posted August 22, 2013 A quick fix for this is the edit the admin/templates/blend/head.js file or whichever admin theme you use. Add the following in the (document).ready(function(){ section. $("#checkall0").click(function () { $(".checkall").attr("checked",this.checked); }); Here is the full head.js modified with this fix. function intellisearch() { $("#intellisearchval").css("background-image","url('images/loading.gif')"); $.post("search.php", { intellisearch: "true", value: $("#intellisearchval").val() }, function(data){ $("#searchresultsscroller").html(data); $("#searchresults").slideDown("slow",function(){ $("#intellisearchval").css("background-image","url('images/icons/search.png')"); }); }); } function searchclose() { $("#searchresults").slideUp(); } function sidebarOpen() { $("#sidebaropen").fadeOut(); $("#contentarea").animate({"margin-left":"209px"},1000,function() { $("#sidebar").fadeIn("slow"); }); $.post("search.php","a=maxsidebar"); } function sidebarClose() { $("#sidebar").fadeOut("slow",function(){ $("#contentarea").animate({"margin-left":"10px"}); $("#sidebaropen").fadeIn(); }); $.post("search.php","a=minsidebar"); } function notesclose(save) { $("#popupcontainer").toggle("slow",function () { $("#mynotes").hide(); }); if (save) $.post("index.php", { action: "savenotes", notes: $("#mynotesbox").val() }); $("#greyout").fadeOut(); } $(document).ready(function(){ $("#shownotes").click(function () { $("#mynotes").show(); $("#greyout").fadeIn(); $("#popupcontainer").slideDown(); return false; }); $(".datepick").datepicker({ dateFormat: datepickerformat, showOn: "button", buttonImage: "images/showcalendar.gif", buttonImageOnly: true, showButtonPanel: true, showOtherMonths: true, selectOtherMonths: true }); $("#checkall0").click(function () { $(".checkall").attr("checked",this.checked); }); }); 0 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.