Hi, I am using a custom select command with joins to display info on my php grid.
I cannot seem to insert, update, and delete info. Is insert, update, and delete automated even with custom select commands or do I have to add custom insert, update, and delete somewhere?
2 Answers
By default, insert,update,delete work on single table. For that you must declare ->table property to function along with select_command, which is for custom selection.
If you wish to have update implementation that include more than one table or have some more complex business cases, you might need on_update / on_delete event handlers, which is part of premium package.
Your Answer