Hello,
I am having difficulty with what should be very routine. A child form (ie - via relation in a tab) is not able to delete a record via a basic issuance of controller.delete in a form level method (something I have done many times before) within the child form.
This particular form exists within a Module that is included in the Main solution. I have checked the following:
-
Relations are properly formed and the correct checkboxes in place;
-
The form will delete a record properly in the Module it was written in. The foundset count drops properly and the database appears to accept the row delete (checked the backend db, Postgres, for constraints running) just fine. Database is accepting row deletes properly via PgAdmin Console.
-
The method is running (I come up to controller.delete line of code and it sails right through this line of code)
-
That the module is properly included (I have also tried removing and re-adding the module)
-
There are no conflicting relationships (checked thoroughly). However, I did add a child-to-parent relation (opposite of the normal parent-child that remains in production) during the day of development and, yes, I did remove it. This one point concerns me … does it have an impact somehow ?
-
I made the edits to the delete method (ie - the module) from within the main solution. The code appears to have taken properly (and executes fine if I open the module itself and run the code - it will delete just fine at the module level … per point 2.).
Suggestions?
Thanks, Michael