visibility:find = hidden in fields.ini
Archived from the Xataface Users forum.
KenKirchner — Thu Jun 21, 2007 12:29 pm
I couldn’t find anywhere that this or something equal was implemented, so I went about adding it for my app.
In dataface/Dataface/SearchForm.php around line 131 -
if ( $this->_table->isPassword($name) ) continue;
//kk Add visibility:find attribute (to hide field)
if ( $field[‘visibility’][‘find’] == ‘hidden’ ) continue;
// add the field to the form
Apologies if this is already in there and I missed it.
shannah — Sat Jun 23, 2007 10:22 am
Thanks for posting this Ken. I’ll incorporate this into the next release.
-Steve