Petr
|
| Posted: 03/04/2002, 11:38 AM |
|
I have a DisplayList (grid) of records. I select "Edit" URL to display a record
for modification (RecordDetail). When selecting either Update or Cancel buttons,
I have set up the pagelink for the DisplayList, I get a list showing only
the record that I was working on. Now, if I select "Search" which is also
on the page, it lists correctly all records.
How do I get it to list all records the first time after 'Update/Cancel'
is called?
|
|
|
 |
bubba gump
|
| Posted: 03/04/2002, 3:18 PM |
|
cool
|
|
|
 |
Nicole
|
| Posted: 03/05/2002, 1:31 AM |
|
Petr,
most probably transit parameters are passed from record form. The workaround is to create Before Cancel and Before Update event and overwrite sActionFileName and sParams vars there (take a look at CC Help to find the variables description). E.g.:
ASP
sActionFileName = "AnyPage.asp"
sParams = ""
PHP
$ActionFileName = "AnyPage.php";
$sParams = "";
|
|
|
 |
Petr
|
| Posted: 03/05/2002, 3:39 PM |
|
Thanks Nicole. It worked like a charm.
|
|
|
 |
|