PHPRunner 5.2 (5482)
Here's a case in a master/detail list where (some/all of) the detail records don't show.
Go directly to the detail table list. Use advanced search to select some obscure set or even an non-existent set. Leave it like that.
Sometime later, go to the master list, find a row where details exist, hover shows the details. Click on the details link. The detail records don't display.
This is because the $strWhereClause for the detail table is still active, from the previous advanced search. To get the details to show (or all of them to show), you have to go back directly to the details table, clear the search parameters, and then try the master-detail list again.
To see this more clearly, in the detail list page: Before SQL query add the following line:
echo "Where: ".$strWhereClause;
So, how do I work around this? Or how do I clear the previous detail's $strWhereClause when I do a new master-detail list?