Displaying 1 result from an estimated 1 matches for "bugclientlink".
2006 Jan 19
0
Incorrect number of arguments.
Hello all. I have the following code in a partial. It''s purpose is to
create a dropdown box with a bunch of values in it for display purposes
only.
(@bugsheet is an instance variable being used by the partial)
<%= select("bugclientlink", "bug_id",
Bugclientlink.listclients(@bugsheet.id))
Given the fact that Bugclientlink class contains:
def self.listclients( reference )
result = Bugclientlink.find_by_sql["select client_ref from
bugclientlink where bug_id = ?", reference ]
result.push(B...