fblsys
|
| Posted: 06/17/2005, 7:20 AM |
|
I'm having problem with a page generated using CCS can any one please help?
I have a page with 2/3 forms all related by the value of a field that is generated after ADDing the first form.
Lets call them FORM1, FORM2 and FORM3.
After inserting FORM1, FORM1 will disappear and FORM2 will become visible.
After inserting FORM2, FORM2 will disappear and FORM3 will become visible.
I would have loved to use the Registration Sample but I will need to pass the parameter from one page to another.
Has anyone got the idea that will help me, do't mind a work around.
Thanks
|
|
|
 |
datadoit.com
|
| Posted: 06/17/2005, 10:00 AM |
|
One method would be to add a parameter to the URL after submitting each form
(keeping the return page the current page), then checking for that parameter
before displaying each record form.
AfterExecuteInsert/Update: CCAddParam()
Record Form's BeforeShow: if (!CCGetParam()) $Form->Visible = false
The above is just a concept/possibility/untested.
-MikeR
|
|
|
 |
|