i don't know if this happens with you guys but when the column 'tagger_id' and tagger_type are both filled out meaning all the columns are filled out in the taggings table, when you do this:

record.category_list where record has acts_as_taggable_on :category

it prints out empty.

Remove the tagger_id and the tagger_type it will print the category_list find.

Note that doing this:

record.taggings results in rows so i don't undrstand why it prints out empty.

Also,

record.categories_from(account) results in undefined method. in the README it says that doing @some_path.locations_from but it seems that function deos not exist and true enough i search for "_from" in the code did not find any.

link|improve this question

30% accept rate
feedback

1 Answer

If you look at the generated SQL, record.category_list will only look for taggings where the tagger_id is NULL. That is its default behavior, since it is designed to look for tags by a particular tagger.

If you are interested in all categories, without regard to tagger, you want record.all_categories_list.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.