The acts-as-taggable tag has no wiki summary.
0
votes
1answer
100 views
choosing between category and then by many subcategories
I have some question, I will try to explain.
I want to build categorization, that provides such functions.
I have some big category such Waste recycling equipment under that is subcategories such ...
0
votes
3answers
77 views
Act as taggable Tags are not displayed on my view
I'm using activeadmin and act as taggable gem. When I insert tags on activeadmin it saves the tags but is not displaying the tags in the view
activeadmin model:
ActiveAdmin.register Project do ...
0
votes
0answers
102 views
ActsAsTaggableOn::Tag - How to delete one of the tags?
I am using the ActsAsTaggableOn plugin for rails 3.0. Currently, I am assigning user tags to task models, while also keeping track of the tag ownership (e.g. I need to know which user created a ...
0
votes
1answer
113 views
acts_as_taggable runs queries on every request
I have a User.rb model that includes the line:
acts_as_taggable_on :industries, :uxes
[The 'uxes' term contains UX preferences belonging to the user, such as whether they dismissed a certain help ...
0
votes
1answer
117 views
Style tag_list class from Acts as Taggable On
I'm undoubtedly missing something obvious, but how should I style the output of individual tags produced by <%= user.tag_list %>?
<%= user.tag_list, :class => 'tags' %> doesn't work...
...
1
vote
0answers
126 views
Rails & Act as taggable, filtering out results with multiple tags?
this is my first question in stackoverflow.
I am using rails 3 with plugin called act as taggable and I like them.
I've been doing a webstore-tutorial from a book called 'Agile Web Development with ...
1
vote
2answers
827 views
Saving tags with acts_as_taggable and activeadmin
I'm using ActiveAdmin and acts_as_taggable in a rails 3 app, and I can get the tag list to show fine as a checklist on edit pages, and I can add tags using the console and then remove them using the ...
3
votes
1answer
231 views
Rails tagging gem that supports tagging a model with other models?
Most Rails tagging gems support tagging an object with arbitrary strings. (In addition to this) I'd like to tag an object with other objects.
Imagine I am building a Q&A site for Dog Lovers: I ...
0
votes
1answer
65 views
Tag cloud of only specific posts in rails
Hi i am using acts_as_taggable in my rails app 2.3.11.
I have model User who can posts which has tags associated .
So i am using like
@tags = User.find(:first).posts.tag_counts
to get the tags ...
0
votes
2answers
123 views
Does the :any flag overwrites the :on (context) flag in acts_as_taggable_on's tagged_with?
I'm confused with how the flags :on and :any works together in the "tagged_with" method of acts_as_taggable_on.
For example, if I have the following users @user1 and @user2:
class User < ...
0
votes
1answer
384 views
How to search by context using acts-as-taggable-on
I'm having trouble understanding how the "tagged_with" method would work in the case where I wanted to search "by context".
For example, if I have the following @user:
class User < ...
0
votes
1answer
248 views
Rails Why does acts_as_taggable not need to be in a nested form to create tags?
When I have a relation such as:
class Programmer < ActiveRecord::Base
has_many :projects
has_many :assignments, :through => :projects
acts_as_taggable
end
class Assignment < ...
0
votes
1answer
386 views
Rails finding all posts with certain tags without using acts_as_taggable
So I'm trying to learn rails and I don't want to cheat just yet.
post model:
class Post < ActiveRecord::Base
has_many :features
has_many :tags, :through => :features
end
tag model:
...
19
votes
2answers
4k views
How to add tagging with autocomplete to an existing model in Rails?
I'm trying to add "tags" to an Article model in a Rails 3 application.
I'm wondering if there is a gem or plugin that has adds both the "tagging" functionality in the model and also the auto-complete ...
2
votes
1answer
174 views
how to find number of tag matches in acts as taggable on
I have two entries in my database
Obj1 is tagged with "hello, world, planet"
Obj2 is tagged with "hello"
if I do modelName.tagged_with(["hello", "world", "planet", "earth"], :any=>true)
I want to ...
0
votes
1answer
1k views
Rails - Acts_as_Taggable
Anyone here have experience with the Rails Acts as Taggable plugin?
https://github.com/mbleigh/acts-as-taggable-on/
I'm curious to know the following: Can you keep tags silod? My app has projects, ...
1
vote
1answer
2k views
Rails 3 tagging problems, acts_as_taggable_on
I'm using acts_as_taggable_on to add tags to posts, other tagging plugins/gems don't work with rails 3. I can edit/display tags on the post model and the tags controller displays the posts tagged by ...
0
votes
1answer
364 views
Rails: Sort most used acts_as_taggable tags by a user
I have set up two models: user and post. Each post belongs_to a user. posts also have tags, using acts_as_taggable. On UserController#show I want to list the tags the user uses, sorting from most used ...
0
votes
0answers
208 views
acts-as-taggable-on fails to initialize Tag object
At some point I started getting the error message:
uninitialized constant TaggingsController::Tag
for @tags = Tag.all(:order=>'name') and @tag = Tag.new
previously it had been working. I can ...
2
votes
3answers
561 views
acts_as_taggable undefined method 'each' error
I am trying to use acts_as_taggable plugin to include tag functionality in my ruby on rails application. I have attached the code. I have installed the plugin and also run the migrations.I am getting ...
1
vote
0answers
1k views
Unknown record property / related component “…” on “…” with sfDoctrineActAsTaggablePlugin
I'm using the symfony plugin sfDoctrineActAsTaggablePlugin to add a Taggable behaviour to some objects of my model.
I followed the instruction given here but when I want to save a taggable element in ...
3
votes
2answers
569 views
weird behavior with acts_as_taggable_on
Edit
The instructions on Github instruct you to use the gemcutter source for the gem. Currently, this installs version 2.0.5 which includes the bug I've detailed below.
@Vlad Zloteanu demonstrates ...
0
votes
1answer
277 views
Rail plugin acts_as_taggable_on :through
I have two models:
class Employee < ActiveRecord::Base
has_many :projects
end
class Project < ActiveRecord::Base
acts_as_taggable_on :skills, :roles
end
I would like to find Employees ...
0
votes
1answer
414 views
Stable URL of acts_as_taggable plugin in Ruby on Rails
In one of my applications on Ruby on Rails, I am using acts_as_taggable plugin. Coding was doing fine and suddenly it started giving following error.
RuntimeError (acts_as_taggable_on_steroids has ...
0
votes
2answers
478 views
acts_as_taggable_on with finders
I would like to use acts_as_taggable_on to do a auto suggest style tagging similar to stackoverflow below... that or facebook.
But I'm unsure looking thru the rdocs what methods to use to pull all ...
0
votes
1answer
146 views
Rails (pagination and tags)
I stumbled upon a problem of how to make work together acts_as_taggable (on steroids) and will_paginate gems. What I found on this problem is this: ...
0
votes
2answers
123 views
Model's method not being recognized when called
I'm using ruby on rails 2.3.2 and also using the acts_as_taggable_on puglin. That generated me two db tables: tags and taggings.
As I didn't need anything more from those, I didn't create a Tag ...
1
vote
1answer
137 views
Rails acts_as_taggable_on grouped alphabetically?
Having sorted the tag_counts hash via the following code:
sorted_tags = Contact.tag_counts.sort{ |x,y| x.name.downcase <=> y.name.downcase }
what is the easiest/most efficient way to display the ...
2
votes
2answers
1k views
How can I delete the tag from the tag list of the act_as_tagg plugin?
I have tried to destroy tags from the given code but it's not working. How can it be accomplished?
@tag = Tag.find_by_name(params[:name])
@tag.destroy
render :update do |page|
...
5
votes
3answers
2k views
Thinking Sphinx and acts_as_taggable_on plugin
I installed Sphinx and Thinking Sphinx for ruby on rails 2.3.2.
When I search without conditions search works ok. Now, what I'd like to do is filter by tags, so, as I'm using the acts_as_taggable_on ...
3
votes
1answer
374 views
Sphinx - When to use 'has' and 'indexes' for fields
I installed Sphinx and Thinking-Sphinx some days ago on my ruby on rails 2.3.2, and basic searching works great. This means, without any conditions. Now, I want to filter the search with some ...
0
votes
1answer
335 views
Link_to doesn't work when using acts-as-taggable-on with custom method
Or rather I don't know how to specify the route for it.
I have my controller setup us:
def tags
@clients = current_user.clients.find_tagged_with(params[:tag])
end
and my views
Tags:
<% for ...
1
vote
1answer
374 views
Hyphenate tags added to acts_as_taggable_on
I am using acts_ as_ taggable_on in my app and have it working perfectly however I am looking for information on how to make one modification.
At present if I enter a tag which includes spaces, the ...
1
vote
1answer
370 views
LocalJumpError, Tag Cloud with acts_as_taggable on Rails 2.3.5
I'm using acts_as_taggable_on_steroids plugin with rails 2.3.5 to build a tag cloud and I'm unfamiliar with the syntax of their view loop. I couldn't find any ruby doc explaining that loop either.
...
1
vote
1answer
250 views
undefined_method 'tag_count' using acts_as_taggable_on_steroids
I am using acts_as_taggable to create a tag cloud for my application. I have a model 'Question' which is using the acts_as_taggable plug-in. I basically want to filter the tags for the question model. ...
1
vote
1answer
857 views
find all children of an object tagged with acts_as_taggable_on
I have a rails site with two models: events and dates
events has many dates
events are tagged using acts_as_taggable_on
I'm trying to find all dates (chronological order) for events tagged with a ...
1
vote
1answer
312 views
How can I scope acts_as_taggable_on_stereoids by Account?
If I have my website logically split into accounts (eg. acme.mywebsite.com, xyz.mywebsite.com), how can I implement act-as-taggable-on-steroids and have the tags scoped by the current account ?
To ...
0
votes
1answer
217 views
How to return the number of Posts Tagged with “example” using acts_as_taggable under ROR
How to return the number of Posts Tagged with "example" using acts_as_taggable under ROR
currently I am implementing this by declare
<%=Questions.find_tagged_with("example", :match_all => ...
3
votes
1answer
952 views
Sort tag cloud alphabetically in acts_as_taggable_on_steroids
I got the acts_as_taggable_on_steroids plugin to work fine. The tag_cloud method in my view create and formats the cloud properly however the tags are listed in order of 'count desc'.
How to I ...