The custom action does not seem to get us anywhere -- I get empty drop-down menus. Not really sure why. I *think* I set it up just like your example (a few tries) but there must be something wrong.

It seems the block is a good option for now -- we'll need to have a page dedicated to search later. The only thing is. We're a little fuzzy on exactly how to work with that part (I have read the block tutorial a few times but still have some questions). In using blocks, exactly which file does the code go into and how? Can you show an example of a block in a file?
Here's one of several attempts to make use of the block feature:
bmmcom@bmm.com [~/public_html/torpedo/conf]# cat ApplicationDelegate.php
getLoggedInUser();
if ( !isset($user) ) return Dataface_PermissionsTool::NO_ACCESS();
// if the user is null then nobody is logged in... no access.
// This will force a login prompt.
$role = $user->val('Role');
return Dataface_PermissionsTool::getRolePermissions($role);
// Returns all of the permissions for the user's current role.
}
}
class tables_departments{
function block__before_application_menu(){
$app =& Dataface_Application::getInstance();
$query =& $app->getQuery();
$table =& Dataface_Table::loadTable($query['-table']);
$statusoptions= $table->getValuelist('Status');
$options = $table->getValuelist('Jurisdiction');
df_display(array('Jurs'=>$options,'Sta'=>$statusoptions), 'Dataface_Application_Menu2.html');
}
}
?>
"
I did actually get the application on the web. The URL is
http://70.98.54.35/~bmmcom/torpedo/ . A user ID is nevada with a password of dataface.
Thanks again!
Mike