CF 3.2
I have a complex set of forms where user can save data, load and save again.
Initial save + load is fine - ID added to database
But when user loads and completes the form it does another save as (new ID generated) opposed to using the existing entry ID.
My load scripts puts the ID in the URL, I then load id as a hidden field into the first form (in set of many).
Jacob
I have a complex set of forms where user can save data, load and save again.
Initial save + load is fine - ID added to database
But when user loads and completes the form it does another save as (new ID generated) opposed to using the existing entry ID.
My load scripts puts the ID in the URL, I then load id as a hidden field into the first form (in set of many).
Jacob
Hi Jacob,
This problem is almost always because the primary key value of the existing record is not being included in the form data. Please turn debug on and check that the input name and value are correct.
Bob
This problem is almost always because the primary key value of the existing record is not being included in the form data. Please turn debug on and check that the input name and value are correct.
Bob
This topic is locked and no more replies can be posted.