Email fields are not available as a filter option in Views.
| Comment | File | Size | Author |
|---|---|---|---|
| #4 | email.module.patch | 2.2 KB | mroswell |
| #1 | email_v1.9.2.8_views_filter.patch | 2.06 KB | regx |
Email fields are not available as a filter option in Views.
| Comment | File | Size | Author |
|---|---|---|---|
| #4 | email.module.patch | 2.2 KB | mroswell |
| #1 | email_v1.9.2.8_views_filter.patch | 2.06 KB | regx |
Comments
Comment #1
regx commentedThis did the trick for me.
I don't fully grock the way CCK builds it's views code though. The views api is pretty tricky as is, and cck works quite a bit of magic.
I hope this helps out someone else.
Comment #2
Michael_XIII commentedThanks, but your forgot to set 'sortable' => true some lines earlier - near lines 31-35
case 'database columns':
$columns = array(
'email' => array('type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => "''", 'sortable' => true),
);
return $columns;
Comment #4
mroswell commentedSame as patch #1, but with feedback on sorting from comment #2, incorporated.