similar to: $80/hr - rails developer and mentor + active scaffold

Displaying 20 results from an estimated 50000 matches similar to: "$80/hr - rails developer and mentor + active scaffold"

2007 Oct 17
0
Active Scaffold - contract work $75 / hour - 4 to 6 weeks
We need an experienced rails developer to help on a rails project using Active Scaffold. There are several modules that are needed and it would probably take 4 to 6 weeks to develop. The rate is $75 per hour CDN Please contact me for more details. thanks James Burrett B.Sc. B.Ed. james-odGE0sqHoJxAfugRpC6u6w@public.gmane.org --~--~---------~--~----~------------~-------~--~----~ You received
2007 Jun 25
1
Functional tests and active scaffold: unexpected assertion failure.
Hello, I''m writing a functional test for a controller that uses active scaffold. def test_presence_of_field login_as(:peter) profile = Profile.find :first get :edit, {:id => profile.id} assert_response 200 assert_select "textarea#record_free_text_ec" end I was expecting the first ''assert 200'' to give me a green bar, but added it for
2007 Jun 27
1
Active Scaffold controllers created dynamically at runtime?
Does anyone know how to link Rails'' routes into anonymous controller classes created at runtime (defined with their superclass as ActionController::Base)? I''m trying to create a plugin for all of my projects that dynamically creates an active_scaffold controller for each model. It would essentially be like a scaffold_all_models for active_scaffold. I believe the original
2008 Jan 18
1
Announcing: Ext Scaffold Generator Plugin for Rails
The Ext Scaffold Generator Plugin can be viewed as a drop-in replacement for Rails'' standard Resource Generator. Accepting the very same options, it will generate views using data grid and form components from the Ext JS Javascript GUI framework as well as a controller acting as an Ext-compatible JSON web service. The generated code can be used as a starting point for further
2007 Aug 23
0
active scaffold polymorphic model
Hi I am trying to use active scaffold to build a polymorphic model . I have a number of models that can be featured and I have a Feature model that belongs_to :item, :polymorphic => true In my config.columns I include :item_type and item_id, I also added :item_name to show the name of the record in the form. In the form, when a type of model is selected I populate the select box for
2008 Feb 01
1
Rails routing and active scaffold fight to the death
Just kidding, it''s not as bad as it seems. Right now I don''t have much in my route.rb, and I''m getting this in my console: Processing ApplicationController#index (for 127.0.0.1 at 2008-02-01 14:54:00) [GET] [2008-02-01 14:54:00] (552) INFO Session ID: a8eeb58764d872bbd1fdb337636e68e7 [2008-02-01 14:54:00] (552) INFO Parameters: {} [2008-02-01 14:54:00] (552)
2007 Aug 30
1
ACTIVE SCAFFOLD UTF-8 question/problem??
Hi all, Who can help me with problem? I''m using active scaffold for managing my models, but i get a problem with standart search when i''m looking for records that saved in UTF-8 in database. For example: I have some models: name="igor" name="john" name="ivan" name="вася" name="анна" in search field i type symbol =
2008 Mar 18
1
Running multiple mongrel to "serve" the same rail application with active scaffold
Hi, I want to run more then one mongrel for the same rail application on the same machine, using the same rails files. This application use "active scaffold" when I start one mongrel some files are writes in the public/plugin_assets/ folder. If I start more then one mongrel it is possible these files become scrambles ?, there is also some files in tmp/{cache,pids,sessions ,sockets,
2009 May 22
1
rails 2.3.2, active scaffold, nested, ActionView::TemplateError (undefined method `format_column' for #<ActionView::Base:
Before I dig in any further (since I have no idea where to go from here...) Has anyone been succcessful with 2.3.2, AS, and nested scaffolds? I have the latest of AS and the render_component plugin via % script/plugin install --force git://github.com/lackac/render_component.git -r rails-edge I have an AS user_controller: active_scaffold :user do |config| ...
2007 Oct 22
2
Strange scroll behavior of Auto Complete inside Active Scaffold.
Hi Everyone. After a long weekend of testing some stuff out I finally got the auto suggest working. I have got a problem however in both IE and Firefox as the drop down scrolls the page down to the element only when the up arrow is pressed. Here is a detailed example. When I have <%= text_field_with_auto_complete :product, :colour %> in my product _form.rhtml override... ... and in my
2009 May 12
0
RJS Error: TypeError: while using active scaffold
Hi, I get an unexpected error because i havent do any chnages in any javascript files, after installing active scaffold. Before 1-2 days my application is working fine but from yesterday i got the error for RJS as below while i tried for show action. RJS error: TypeError: $("#console__private_messages-messages") is null $("#console__private_messages-messages").html("\n
2009 Nov 09
6
Active Scaffold Without Database connection --- Help
Hi Friends, I want to know what are ways or how to use the Active Scaffold without Database connection .... I mean Instead of Database I will have a CSV or Flat file..... Thro Active Scaffold Plug-in how to read this file instead of database.... Kindly Can I have you Ideas and Views..... ASAP..... - Antony -- Posted via http://www.ruby-forum.com/.
2007 Dec 22
8
Rails 2.0 scaffold
Hey guys, I posted the other day about scaffold not working and i was told that it was rails 2.0 doing this. (btw i''m using adgile web development) I have read on the internet that you need to put extra stuff like title, description...... So i did this: C:\ruby\depot>ruby script\generate scaffold Product Admin id:int title:varchar(1 00) description:text image_url:varchar(200)
2009 Apr 12
0
Heroku Garden - reversing or changing a 'generate scaffold' command
In Heroku Garden, is there a way of reversing or changing a ''generate scaffold'' command? I often find I need to make changes to the scaffolded application but I do not know how to. ''script/destroy scaffold Modelname'' from the console doesn''t seem to work. For example, I generated a Product scaffold in Heroku Garden. When I try to destroy it using the
2006 Jul 29
0
rails cannot find new scaffold.
I''ve created a new scaffold ( ''table_scaffold'') and placed it in the ''../generators/components folder'' next to the scaffold folder. Yet, when I run : ./script/generate table_scaffold Rails says that it cannot find table_scaffold generator. What am I doing wrong? -- Best Regards, -Larry "Work, work, work...there is no satisfactory
2008 Feb 21
1
Creating incorrect plurals when generating scaffold
Preface: I''m trying to find my way through the "Build Your Own Ruby on Rails Web Application" book. I''m completely new to programming and am having a hard time figuring out the differences between rails 2.0.2 and what''s in the book so please forgive me if this is a stupid question. I''m confused because I finally thought I''d figured out the
2007 Aug 06
0
Problem generating scaffold with a namespace
I''m trying to generate a scaffold based on a model in a namespace and I would like the controller to have a similar namespace. Am I thinking that scaffold should be doing something it doesn''t or is this a bug? rails version: 1.2.3 ruby version: 1.8.5 OS: OS X 10.4.10 Created a model using > script/generate model Foo::Bar creates the model bar.rb in the model/foo directory
2008 May 21
2
Scaffolding and ActiveRecord in Rails 2
Hi, Is is possible to add this constraint: "null => false" and "limit => 45" like below: create_table :movie do |t| t.string :name, :null => false, :limit => 45 end ...just by using this kind of scaffold command (on Rails 2)? $ ruby script/generate scaffold Movie name:string Thanks, D. -- Posted via http://www.ruby-forum.com/.
2010 Mar 08
1
application to mentor syrfr package development for Google Summer of Code 2010
Per http://rwiki.sciviews.org/doku.php?id=developers:projects:gsoc2010 -- and http://rwiki.sciviews.org/doku.php?id=developers:projects:gsoc2010:syrfr -- I am applying to mentor the "Symbolic Regression for R" (syrfr) package for the Google Summer of Code 2010. I propose the following test which an applicant would have to pass in order to qualify for the topic: 1. Describe each of the
2006 Sep 06
1
Changing Scaffold
Hi, I am starting a project in rails and I wish to change scaffolding. I''ve already done some changes like prepare all texts for locale. Now I am wishing to change the way it generates the _form partial. Could someone give some guideline so I can study such thing? I saw "template_for_inclusion" in form.rhtml but couldn''t find out how to change it. Being more