$("#debtor-customer-filter").on('submit', function(e) {
e.preventDefault();
var data = new FormData(this);
$("#debtors-table").DataTable().destroy();
$("#debtors-list").load("debtor/filterCustomerDebtorById", {
debtorFilter: $("#customer-filter").val(), // This set's the status to fetch all records
fromDate: $("#from-date").val(),
toDate: $("#to-date").val(),
cid: $("#customer-id").val()
}, function (response,status,xhr) {
$("#debtors-table").DataTable();
fetchDebtors(response);
});
});
function fetchDebtors(response) {
$(this).html(response);
}
Copy all "Ctrl+A" and paste into the install wizard box and you will get further instructions
The Install Wizard (I think this is mainly for windows. Linux and mac can use terminal) https://xdebug.org/wizard
Here's the downloads you going to need as the one you get from the wizard is not working. (currently at the time of this post creation) https://xdebug.org/download#releases
Wizard steps are managed with simple HTML attributes
data-step="1" data-intro="This is a tooltip for wizard step 1!" data-step="2" data-intro="This is the second tooltip for wizard step 2!" data-step="3" data-intro="This is the third tooltip for wizard step 3!"
In the Ajax submits you will see a variable. formdata The below snippet is what you must append to the top of your Ajax call to initiate the variable Otherwise you need to change the variable to what ever you are targeting.
var formdata = new FormData;
formdata.append("commId", $("#template-id").val());
If you get locked out of your website with this plugin you can clean your table for this plugin to reset it so you can reconfigure it with the below query.
SELECT * FROM wp_options WHERE option_name="aio_wp_security_configs"