We're Moving to a New Support Platform – Starting June 1st!
We’re excited to let you know that starting June 1st, we’ll be transitioning to a new support system that will be available directly on our product websites – Amelia, wpDataTables, and Report Builder. In fact, the new support platform is already live for Amelia and wpDataTables, and we encourage you to reach out to us there.
You'll always be able to reach us through a widget in the bottom right corner of each website, where you can ask questions, report issues, or simply get assistance.
While we still do not offer live support, a new advanced, AI-powered assistant, trained on our documentation, use cases, and real conversations with our team, is there to help with basic to intermediate questions in no time.
We're doing our best to make this transition smooth and hassle-free. After June 1st, this current support website will redirect you to the new "Contact Us" pages on our product sites.
Thanks for your continued support and trust – we’re excited to bring you an even better support experience!
Hi,
I hope you are doing well!
Does wpDataTables have the ability to call 'Actions'? I don't mean to other plug-ins, I mean from within THIS plug-in, could I append, edit, or delete other tables or records with a single call to action.
Specifically for me, I am trying to have users be able to create orders that will each contain multiple records, and then an inventory personnel be able to mark the whole order complete. This would entail some element of applying CRUD to the 'foreign key' table, or perhaps looping through the current filtered table and editing multiple records as "complete" based on the 'foreign key'. Maybe there's another way, but regardless, I think I need to be able to edit more than the active record at once. Is that possible?
Thank you!
Ryan
Hi rsremole,
Thank you for the inquiry.
wpDataTables provides actions and filters for developers if they want to customize behavior of the plugin. You can take a look at the list of all available actions and filters at these links:
You can try our sandbox site: Front-end & Back-end - you can find a fully functional version there to try out all plugin features.
Thanks, Milos!
I did do some basic research before posting. What wpDataTables calls "Actions", I would call "Triggers" to execute an action. Regardless, that is a great feature!
So, I think you are saying that there is not a way to do what I was asking about except to write PHP in a separate Add-In and call it from one of your Actions. Is that correct?
Hi rsremole,
"So, I think you are saying that there is not a way to do what I was asking about except to write PHP in a separate Add-In and call it from one of your Actions. Is that correct?"
- Yes but you don't have to create a new add-on, than you can create the functions in functions.php file of your WordPress.
Thank you! That was very helpful!