Here is the typical List page with the list of cars sorted by make.
Sometimes you may need to make this screen less cluttered by removing the repeating values in the Make column. Something like this:
Here is how this can be done:
1. Add the following code to the List page: BeforeProcess event:
$_SESSION["Make"]="";
2. Set the 'View as' type of the Make field to 'Custom' and paste the following code there:
if ($value==$_SESSION["Make"])
$value="";
else
$_SESSION["Make"]=$value;
See also: