search for: assigned_to

Displaying 5 results from an estimated 5 matches for "assigned_to".

2019 Nov 16
2
[Bugzilla] Is Bugzilla down?
Hi, It seems that Bugzilla (https://bugs.llvm.org/) is down, when I using the search engine. -- Best Regards, Xing
2006 Jul 21
1
Partial, Table Layout, Multiple Controllers/Models... DRY?
...partial (or something similar) that could take in an object from any controller, a list of columns that I want added from that object, table headings, etc.. and produce the output - independent of the controller/model. To further explain: Assume I have a Lead. Lead has first_name, last_name, assigned_to, created_at, phone_number_home, etc.. I want first_name, last_name and created_at to show up in the table as rows and I want "First Name", Last Name" and "Date Created" as the table headings. Even if my object has 50 fields, I only want a select few of them to show up...
2006 Feb 14
6
Multiple associations to the same class
Hi, I cannot seem to create associations like this: class Project < ActiveRecord::Base belongs_to :manager, :class_name => ''User'', :foreign_key => ''manager'' belongs_to :liaison, :class_name => ''User'', :foreign_key => ''liaison'' end p = Project.new p.manager => 1 trying to retrieve associated objects
2008 Jul 15
9
Beginner Question.
I''m just getting into RoR, coming from a long PHP background. So far I LOVE IT! I''m hitting a roadblock with updating my mysql database. For simplicities sake, I have 2 tables and here are the relevant columns. Table Users id name email Table Issues id createdby assignedto reportedby In my models I have everything mapped properly I believe. When I try to update the
2006 Mar 20
3
Linking two HTML SELECT''s together
Hi, How do I link two HTML SELECT''s together. Let''s say for example that I have a drop-down list with a list of all countries. Once the user selects one of the countries I would like to make an AJAX call back to the server to populate the second drop-down list with all of the cities for that country. Any ideas on how to go about to do this? Regards Jerrie Pelser --