H
hackerboy
Guest
Deletion of a large number of records sucks. I have found a way around for now and happy to post my first hack for Rollbase...
You will need to put the following script into your application's custom sidebar (Application setup your application more actions Custom Sidebar Caveats: - Will result in deleting all records in Recyclebin (so be careful) - To abort at any stage you will have to move away from the Recyclebin page (closing the browser tab is most effective) - Because the next page renders after the current 20 records have been deleted, I'd assume the previous 20 were successfully deleted. $(document).ready(function() { if (window.location.href.indexOf('recycleBin.jsp') -1) { // Cleanup recyclebin rbf_checkListBoxes(document.recBin, true, 'sel_', 'recBin'); var buff = rbf_selectedBoxes(document.recBin, 'sel_'); if (buff.length == 0) { return; } window.location.href = 'recycleBin.jsp?act=purgeGroup&ids='+buff; } }); And when your work is done, you would want to remove the script from the custom sidebar. Or else, any items in the Recycle bin would be deleted if anyone visits it. 
Continue reading...
Continue reading...