Override the behavior of titleQuery(). Get the filenames.
Overrides Numeric::titleQuery
public function titleQuery() {
$titles = db_select('file_managed', 'f')
->fields('f', array(
'filename',
))
->condition('fid', $this->value)
->execute()
->fetchCol();
foreach ($titles as &$title) {
$title = check_plain($title);
}
return $titles;
}