Hello,I thought I read somewhere on the forum or in help file? (much searching can’t seem to find it) that it is possible to setup a Master/Detail where a new MASTER ADD screen has the 1st DETAIL ADD fields already shown, whereby creating the 1st MASTER and 1st DETAIL (of that master) with a single ADD button. Is this possible, or am I mistaken?Thank you,
B
Have you already enabled “Master/Detail Add (as Detail)” option from “Table” setup that belongs to your detail table?
Yes.I have it setup and working like in the Tutorial.
At this point, I have to FIRST add a master record. Then select its (detail records column button) in the list to ADD a detail record in a second step.
You may use “Row_Inserted” server event that belongs to the master page in order to redirect to the Add page that belongs to the detail table that related to its master record, for example:$this->terminate(“url_to_your_detail_add_page”); // adjust “url_to_your_detail_add_page” to your actual URL of detail add page