How can I implement a 'not-in-list' event when adding a new record that requires a new record in the related table? even a link to the form on the pop-up would do... so say I am adding an order, but it's for a new customer?
Sorry for the late response, we have some agents that have contracted Covid-19, so our team is cut in half.
Sorry but I did not quite understand what are you trying to achieve. Can you please explain me in little more details and send me some example/screenshot/screencast, so I can give you my suggestion.
Unfortunately we don't have custom events on which you can trigger after clicking on submit/ok or apply button. You can do standard taking off click event(jQuery) from those buttons and do your staff if specific input is empty. You can try something like that
(function ($) {
$(function (){
//need to apply table id for those buttons
$(document).off().on('click', '#table_1_ok_edit_dialog', function (e) {
//your logic
});
});
})(jQuery);
This is custom work so you will need to create your logic for each submit/ok or apply button becasue custom solutions are not covered with standard support.
Hi
How can I implement a 'not-in-list' event when adding a new record that requires a new record in the related table? even a link to the form on the pop-up would do... so say I am adding an order, but it's for a new customer?
Thanks
Hi Sue,
Sorry for the late response, we have some agents that have contracted Covid-19, so our team is cut in half.
Sorry but I did not quite understand what are you trying to achieve. Can you please explain me in little more details and send me some example/screenshot/screencast, so I can give you my suggestion.
Best regards
Kind Regards,
Isidora Markovic
wpDataTables: FAQ | Facebook | Twitter | Front-end and back-end demo | Docs
Amelia: FAQ | Facebook | Twitter | Amelia demo sites | Docs
You can try our wpDataTables add-ons before purchase on these sandbox sites:
Powerful Filters | Gravity Forms Integration for wpDataTables | Formidable Forms Integration for wpDataTables
Hi Sue,
Unfortunately we don't have custom events on which you can trigger after clicking on submit/ok or apply button. You can do standard taking off click event(jQuery) from those buttons and do your staff if specific input is empty. You can try something like that
This is custom work so you will need to create your logic for each submit/ok or apply button becasue custom solutions are not covered with standard support.
Thank you for understanding.
Kind Regards,
Isidora Markovic
wpDataTables: FAQ | Facebook | Twitter | Front-end and back-end demo | Docs
Amelia: FAQ | Facebook | Twitter | Amelia demo sites | Docs
You can try our wpDataTables add-ons before purchase on these sandbox sites:
Powerful Filters | Gravity Forms Integration for wpDataTables | Formidable Forms Integration for wpDataTables
no problem! just didn't want to put that work in if there was a simple way to do it. Thanks.
Hi Sue,
You are welcome. All right.
Best regards.
Kind Regards,
Isidora Markovic
wpDataTables: FAQ | Facebook | Twitter | Front-end and back-end demo | Docs
Amelia: FAQ | Facebook | Twitter | Amelia demo sites | Docs
You can try our wpDataTables add-ons before purchase on these sandbox sites:
Powerful Filters | Gravity Forms Integration for wpDataTables | Formidable Forms Integration for wpDataTables