The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
2answers
36 views

Converting Rails attributes to property-value pairs

I have a Media model that has a bunch of standard metadata attributes and is persisted in the database as normal. What I want to do now is to add some configurable metadata attributes to this model on ...
0
votes
1answer
28 views

Assigning multiple form values to one database column

I am newbie to Rails and I cannot seem to find how to assign multiple form values from my view to a single Database column (model attribute). So I tried the virtual attribute approach, here is my ...
0
votes
1answer
64 views

Defining a virtual attribute in Rails and making it available as a symbol

I've defined a couple of virtual attributes, defining both the setter and the getters methods: class Post < ActiveRecord::Base def shared_to_all # evaluates some expression of the attribute ...
0
votes
2answers
46 views

how to fill virtual form fields with non-split attribue

I have a form with 3 virtual attributes (phoneAreaCode, phonePrefix and phoneSuffix) splitting a phone number into segments which gets joined together and saved to the database as phoneNum. When a ...
1
vote
1answer
117 views

Virtual attributes in rails 4

How can I use virtual attributes(getter, setter) in rails 4, as 'attr_accessible' removed. I am getting issue, here def tags_list @tags = self.tags.collect(&:name).join(', ') end I ...
4
votes
2answers
243 views

Selecting Rails Models via Virtual Attributes

I have the two rails models Section & SectionRevision. A Section is mostly just a container that holds all the Revisions relating to itself. So most of the attributes for the Section are basically ...
0
votes
1answer
43 views

Rails Getting a running balance with ordered list - summation virtual attribute

I'm trying to get a current balance per transaction, a simple summation (Credit's up to record - Debits up to record) on an ordered list. The challenge is that transactions are often entered out of ...
1
vote
1answer
85 views

How to access virtual attributes of model in a nested form with Rails

I have a basic nested form. I want to access a virtual attribute for the nested form's model. Model 1: Lease Has_many :transactions accepts_nested_attributes_for :transactions, :reject_if => ...
0
votes
1answer
170 views

Rails 3: virtual attribute not being set

I have the following User model with a artist_attributes virtual attribute: class User < ActiveRecord::Base attr_accessor :artist_attributes attr_accessible :artist_attributes belongs_to ...
0
votes
0answers
65 views

Rails ActiveRecord with local and UTC time columns

I currently have a model that has a my_datetime and my_time_zone fields. My app currently has the default config.time_zone The server is setup as UTC. my_datetime is currently going into the ...
0
votes
4answers
254 views

Get current_user in Rails form validation by defining a virtual attribute

Rails form validation is designed to go in the model most easily. But I need to make sure the current user has the required privileges to submit a post and the current_user variable is only accessible ...
0
votes
1answer
91 views

Mongoid spacial virtual attribute does not persist

I am using Mongoid Spacial to store coordinates on a Place model. I am geocoding on the client side, and sending two text fields: latitude and longitude. The fields are named correctly, and this ...
0
votes
0answers
62 views

Rails not showing virtual attribute as changed

I am using RocketTag and have the following in my model (other parts removed to keep it simple): attr_accessible :tags, :tag_list before_update { do_something } def tag_list self.tags.join(",") ...
0
votes
1answer
115 views

UnknownAttributeError using build for virtual attribute

I have a nested form containing virtual attributes :card_number and :card_verification. When I try to build with these in the controller update action, I get ActiveRecord::UnknownAttributeError. The ...
0
votes
1answer
93 views

Virtual attributes with multiple parameters

I have the following function that works just fine def holiday_hours_for(holiday) hours["holiday_hours"][holiday.to_s] if hours["holiday_hours"][holiday.to_s] end I am just learning about virtual ...
0
votes
1answer
33 views

insert reblogged articles in the right place in blog.articles array ordered by created_at

EDIT: Actually I just decided against my way of reblogging and instead decided to implement it by copying and making a whole new record from the article and then add a reblogged: true column to it. A ...
2
votes
2answers
951 views

Setting & getting virtual attributes in Rails model

I'm looking for a rails-y way to approach the following: Two datetime attributes in an Event model: start_at: datetime end_at: datetime I would like to use 3 fields for accessing them in a form: ...
0
votes
1answer
83 views

@model.map(&:attributes) and virtual attributes

How can i use @model.map(&:attributes) to make it so that virtual attributes show up in when I render @model as json
0
votes
1answer
139 views

Timezone-affected rails 3 app

UPDATE: Copied from comment made below: I thought about using a web service against IP address for each visitor to the site but then I wondered about users looking at meetings in locations that span ...
0
votes
1answer
102 views

Rails 3 validates_uniquess_of virtual field with scope

I am working on a Rails 3 app that is needing to run a validation on a virtual field to see if the record already exists... here is my model code: #mass-assignment attr_accessible ...
4
votes
3answers
1k views

How can I add a derived column to my Yii model?

In Yii, I need to add a "derived" column to any resultset from my model. The column doesn't actually exist in the database table. For example, say I have an Activity model. There are only two types ...
1
vote
1answer
253 views

Virtual Attributes with Sinatra and Datamapper

I am converting a Rails app to Sinatra. The application relied on ActiveRecord which supports virtual attributes, however, I am struggling to find similar support in DataMapper. In Rails, I used an ...
0
votes
1answer
1k views

yii sort by a custom attribute

In my Vacation model Vac I have this function public function getVacCount(){ this function returns how many days there are in one vacation. and I want to add a custom column to the cgridview like ...
1
vote
1answer
164 views

Virtual attribute is not set before attr_encrypted uses said virtual attribute for encryption key

When encryption_key is called by attr_encrypted, :passphrase hasn't been set. The encryption key ends up being a sha1 hash of the salt; it should be a sha1 hash of the passphrase and salt. The salt ...
0
votes
1answer
122 views

How can i override an attribute from another virtual attribute in a model?

I have a virtual attribute start_date and a database column start (datetime). How can i override the date (but not the time) of start with the date from start_date? I tried this in the setter method ...
0
votes
1answer
318 views

Setting a virtual attribute in a scope

I am trying to find a way of setting a virtual attribute in a scope. The background is I have customers who belong to accounts. Customers can purchase salesitems. I have a table customers_salesitem ...
1
vote
1answer
285 views

passing current_user to model via callback

I have a couple of callbacks that log activity on create/update: class Projelement .. after_create { |p| p.log_projelement_activity "created" } after_update { |p| p.log_projelement_activity ...
2
votes
1answer
271 views

Rails 3 virtual attributes used in another Models controller

Experimenting an issue trying to achieve a virtual attributes of a model in another controller. Is there a way to do it? Here is the virtual attributes: def montant ...
0
votes
1answer
293 views

How to get ActiveRecord record by virtual attribute?

In Rails 3, how can I retrieve a record by looking up on a virtual attribute? I have a name column and a slug that does a simple modification to it (see code below). How can I do a "reverse lookup" ...
1
vote
1answer
730 views

Rails 3 config setting for attr_accesible/protected

I just spent quite some time trying to resolve a virtual attribute issue in my model. It turn out I'd simply forgotten to add it to attr_accesible in my model. Granted I should have caught earlier or ...
3
votes
1answer
2k views

Virtual attribute validation Rails 3

I have not done a whole lot with this Jquery-tokeninput or Rails virtual attributes but have been slamming my head against the wall with this one. Any help or guidance is appreciated. I have a ...
0
votes
1answer
372 views

Rails: Find or create by virtual attribute

I have kind of a tricky problem I'm working on in my current rails app. In my app users share photos. Photos can be associated with a city, so City has_many :photos. I want users to be able to ...
3
votes
2answers
235 views

Virtual attribute not moved to the model hash inside params

I'm having a problem in my Rails 3.2 app where a virtual attribute sent restfully via JSON is not in the right place in the params hash. Well, it isn't where I expect. It remains to be seen if my ...
1
vote
1answer
530 views

Rails 3 Nested Attributes?

I'm a rails newbie, so bare with me on this one... In short, I have an application that tracks services(servers) with IP addresses. What I'm trying to do is set it up so that when I create a new ...
7
votes
2answers
3k views

What would a default getter and setter look like in rails?

I know that I can write attr_accessor :tag_list to make a virtual attribute tag_list for an object in Rails. This allows there to be a tag_list attribute in forms for the object. If I use ...
1
vote
1answer
352 views

rails virtual attributes won't read from form_for submission

I am trying to implement a rails tagging model as outlined in Ryan Bate's railscast #167. http://railscasts.com/episodes/167-more-on-virtual-attributes This is a great system to use. However, I ...
0
votes
0answers
298 views

Mongoid Circular References

So I have a circular reference problem that I don't know how to solve. So the situation is the user has the ability to input a list of multiple films for actors into a text box. The text is held in ...
0
votes
1answer
156 views

STI and virtual attribute inheritance (Rails 2.3)

Say I have an STI relationship, where Commentable is the super class, and NewsComment is the subclass. In Commentable I have: attr_accessor :opinionated def after_initialize self.opinionated = ...
1
vote
1answer
259 views

accepts_nested_attributes_for virtual attributes

I have 2 models: class Invoice < ActiveRecord::Base has_many :invoice_items accepts_nested_attributes_for :invoice_items, :allow_destroy => true end class InvoiceItem < ...
1
vote
1answer
376 views

Ruby on Rails - Searching virtual attributes (tags)

My issue is that I've set up a Virtual Attribute tagging system as shown by Ryan Bates here: http://railscasts.com/episodes/167-more-on-virtual-attributes The system works really well for applying ...
1
vote
1answer
108 views

Setting model association in Rails - saving 'from grandchild side'

I'm a Ruby newbie so please forgive if some of these is complete ignorance. I want to set following associations: Transcription belongs to Composition Composition has many transcriptions, belongs to ...
1
vote
2answers
159 views

How Do I Parse a Text Field and then Write it to Multiple Models in Ruby on Rails?

I have simple project+task application I am creating in Rails 3.1.RC4. It will have project names, tasks and each task will be assigned to a person. The project form is simple with only two boxes (1) ...
0
votes
2answers
139 views

What is the Correct Ruby on Rails Syntax to Write to a Nested Model within a Virtual Attribute?

Trying to divide and conquer these problems (1, 2) I am still having. I would like to write the first step of a BLT recipe in my nested, many-to-many model from the virtual attribute. Later on I would ...
4
votes
3answers
384 views

When to use a virtual attribute or pass data in a hash in Rails 3

In my application, I have a Widget model, a Feature model with a has_many through association by WidgetFeature table. As per the requirements, when I am sending a WidgetFeature object, I should ...
0
votes
1answer
368 views

Rails 3: Railscast #167 virtual attribute for creating tags - @user.tags

I would like to a tagging system where I can separate the tags by the user's who created them. I followed Railscast #167 about setting up tags using virtual attributes, but that way only lets me call ...
3
votes
2answers
2k views

Rails 3: creating a validation with :if statement

Hi I'm trying to setup a validation that is only called in a specific form view, to do this I'm trying to create a hidden_field for a virtual attribute on the form and set this to a value, then ...
0
votes
1answer
171 views

Rails 3 - Process text input to create multiple models

In the app I'm working on, Courses have many Problems, which in turn have many Steps. Right now there is a form for adding Problems to Courses (and then Steps can be added to those problems). What we ...
1
vote
1answer
569 views

Rails Validating on a virtual attribute, setting form error. Railscast #32

I'm basically attempting to implement the solution from Railscast #32, modernized for Rails 3.0.7 http://railscasts.com/episodes/32-time-in-text-field class Task < ActiveRecord::Base ...
1
vote
1answer
322 views

I have identical getter/setter code used for multiple virtual attributes - can I refactor with eval?

I have written customised getter and setter methods for virtual attributes to convert decimals into integers for storage in a database. This is one of three virtual attributes (annual_fee_dollars) ...
1
vote
2answers
104 views

What's the best Rails convention for this?

Let's say that you have a resource that is created and displayed entirely within the view of another resource (eg. comments or tags). Should you still make it it's own resource, or would it be a ...

1 2