search for: zolton

Displaying 3 results from an estimated 3 matches for "zolton".

Did you mean: zoltan
2006 Feb 13
4
activerecord << operator
Hello, I am new here and actually I am writing my first RoR app. My question is: -------- class Topic < ActiveRecord::Base has_many :messages end class Message < ActiveRecord::Base belongs_to :topic end class ForumController < ApplicationController def post message = Message.new(params[:message]) @topic = Topic.find(params[:id]) @topic.messages
2007 Oct 15
3
JavaScript error after including Prototype library
Hello, I''ve started seeing this error after including Prototype: Form.Element.Serializers[method] is not a function http://qaslweb1.crossmediaservices.com/shoplocal/scripts/prototype.js Line 2754 You should be able to see this error, using either Firefox or IE, when browsing to: http://qaslweb1.crossmediaservices.com/ Any ideas? Since this is a version of our original site rebranded
2006 Feb 13
5
ActiveRecord with Legacy Database
Hiya RoR gurus, I work at a .NET shop, but I enjoy learning Ruby. So, I wanna prototype some of our product''s screens using Rails (and hopefullly AJAX). One thing I''m not sure about, since I''m a Rails noob, is whether ActiveRecord will get along with our database... So I have two questions: * Can I have ActiveRecord get along with our PascalCase naming conventions?