How can I delete/hide any option from select box? (options are genereted from db, in db they must stay)
Yep: http://api.drupal.org/api/drupal/modules!system!system.api.php/function/...
i know i must use this hook, but how...?
<sigh>, that's not the question you asked. First see the existing documentation:
http://drupal.org/node/1702628 http://drupal.org/node/651106
Then click on some of the actual examples on the api.drupal.org page.
Then, if you still have questions, as specific questions that actually reflect what you want to know.
What generates the select box?
I have this form:
<select id="edit-field-cat" name="field_cat" class="form-select"> <option value="_none">- - - - - </option> <option value="20">AAA </option> <option value="46">BBB </option> </select>
Select list is a Term reference field type. Options AAA and BBB are taxonomy terms, I don't want delete them from database. I don't want to show AAA option in the select list. How can I use hook form alter?
While it will do more, Taxonomy Access can be used to limit the ability to add/use certain terms.
has anyone tried this module? http://drupal.org/project/option_trim
i haven't tried, but it looks promising.
Comments
_
Yep: http://api.drupal.org/api/drupal/modules!system!system.api.php/function/...
There is nothing...
i know i must use this hook, but how...?
_
<sigh>, that's not the question you asked. First see the existing documentation:
http://drupal.org/node/1702628
http://drupal.org/node/651106
Then click on some of the actual examples on the api.drupal.org page.
Then, if you still have questions, as specific questions that actually reflect what you want to know.
What generates the select
What generates the select box?
I have this form:<select
I have this form:
Select list is a Term reference field type. Options AAA and BBB are taxonomy terms, I don't want delete them from database. I don't want to show AAA option in the select list. How can I use hook form alter?
While it will do more,
While it will do more, Taxonomy Access can be used to limit the ability to add/use certain terms.
option_trim
has anyone tried this module?
http://drupal.org/project/option_trim
i haven't tried, but it looks promising.