setSecurityFilter() method
Example
In the delegate class for the users table:
<?php
class tables_users {
function init(&$table){
if ( !isAdmin() ){
$table->setSecurityFilter(array('group_id'=>10));
}
}
}
This will only set the filter on non-admin users (assuming that you have defined a function isAdmin() to tell you if the current user is an admin user.