search for: activescaffold

Displaying 20 results from an estimated 46 matches for "activescaffold".

2007 Oct 29
2
UI drop down list pulled from database values in activescaffold
as i''m finding it difficult to override the form Ui elements using activescaffold -= i''m looking for a help to build a drop down list in UI (values pulled from databse through SQL query) and so user can select these valus while submitting to database. pls provide any example strictly using activescaffold plugin. thanks selvan-kalaiselvan --~--~---------~--~----~----...
2008 Apr 17
0
Having problem with validates_presence_of fields in form when trying to also use ActiveScaffold (x-posted at ActiveScaffold group)
...ate_and_time. The Event model has_many date_and_times, and the DateAndTime model belongs_to event. The Event model validates_presence_of two submission form variables, the_date and the_time, and those variable values then get used to create a new date_and_time object once the form is submitted. My ActiveScaffold problem is that when the update form for the Event model displays, it shows all the correct dates and times in drop-down lists (with the ability to either edit or delete them) PLUS an *extra* date and time field that''s set by default to the current date and time, with no way to delete that...
2010 Sep 22
8
ActiveScaffold and partials
I was thinking of doing partials as I did in the simple Rails application I worked on today. But, since I''m using ActiveScaffold, I didn''t find any *.html.erb in the views folder of the Rails application that I need to make my partials! How can I work with partials in ActiveScaffold? Thanks. -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups &q...
2009 May 21
1
How to install ActiveScaffold plugin?
I am upgrading to raills 2.3.2. I’m having problems with AjaxScaffold which has been deprecated. I am a linux novice. The web site http://activescaffold.com/ has the following command: script/plugin install git://github.com/activescaffold/active_scaffold.git I tried the above and also ruby script/plugin … Nothing happens. Any ideas?
2007 May 11
0
ActiveScaffold Released
I''m happy to announce that we released ActiveScaffold 1.0 today after 8 months of hard work on the plugin. In addition to announcing our launch, I did a writeup on where the project is going next (hint: think semantic) which I''d love to have some feedback on: http://activescaffold.com/2007/5/10/activescaffold-goes-gold-1-0-released Thanks a...
2007 Oct 07
1
Streamlined/ActiveScaffold don't support has_many :through?
All, I hear tell that neither Streamlined nor ActiveScaffold support the use of has_many :through relationships in the sense that HM:T relationships will effectively be read-only in those frameworks. Does anyone know why this is? I assume that it has something to do with the way that the relationships are introspected on? Thanks, Wes -- Posted via http:/...
2008 Apr 20
1
how to select "no date" in activeScaffold
HI, I have a date column which is not mandatory. How can I get it so activeScaffold offer the ability to select no date (i.e. nil or null type thing)? Thanks --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Spinoffs" group. To post to this group, send email to rubyonrails-spi...
2008 Jan 06
8
n00b question/issue
i know this is n00b but i have searched and i can not figure it out. i am running instantrails on windows. i downloaded ajax_scaffold and installed using script/generate in a new rails project. after configing the db i can the following error when trying to access http://localhost:3001/invoices/list (invoices is the controller/table i built ajax_scaffold on)... NameError in
2008 May 02
0
Getting a dynamic selected field from an activescaffold...?
Hi there. I need to get a specific field from a activescaffold object. The specific field must be editable, and must de available to be set to a new value, thus the object.send(:field) will not work, since it only gets the value, but does not enable reasigning a new value to the field. Is theer a way to do this? -- Posted via http://www.ruby-forum.com/. --~...
2009 Jul 30
8
Rails 2.3.x and active_scaffold Installation
Hi, I have upgraded to rails 2.3 and active_scaffold plugin is not working. when i run this command it creates a active_sacaffold folder in vendor/ plugins, but its an empty folder. I googled but found no way to install it. Please help!!!!!
2012 Jul 19
5
ActiveScaffold Export file - Send as Email
I am using Rails 1.2.3 and Active scaffold 1.1.1 My requirement is to send the export of users data weekly to the admin as email via cron. How can i automate the process of exporting csv and storing it at a place? So that i can pick it from there and attach to the email before sending? -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the
2007 Oct 19
1
ActiveScaffold many to many relationships
Hi there, when I create active scaffolding in a many to many relationship, I would like that my create/delete actions in the nested scaffold would actually erase one relationship between the two tables or create a new link between the two tables, and not delete the record itself in one table or create a new record of one of the two tables involved. Is this possible with Active Scaffold? Thank
2008 Jul 09
1
Problem with ActiveScaffold+RecordSelect
Hello, i''m using this two plugins. But i have some problems. My model is USER belongs_to :avatar. Error is the follow: NameError in Admin/avatarsController#browse undefined local variable or method `field'' for #<Admin::AvatarsController:0x68aae98> RAILS_ROOT: C:/Progetti Rails/RNetPortal Application Trace | Framework Trace | Full Trace Request Parameters:
2008 Sep 05
1
ActiveScaffold :form_ui select
If I have two :form_ui select boxes, how can I make the first select box reload the values in the second? For example, ---> [Car Maker] -------> [Car Model] When I change a value in the ''Car Maker'' select box, I want to display values in the ''Car Model'' select box that only belong_to that Car Maker. I read another post in this group that recommended
2009 Sep 29
0
Problem with RESTful resource and ActiveScaffold
Hello everyone, I am trying to use a RESTful controller for user inside a namespace using AS and one outside for registration and so on. When i try to visit the namespaced url I get Unknown action. Once i replace active_scaffold :users with a def index; end i can the URL. My routes look like: map.register "register", :controller => "users", :action => "create"
2011 Aug 09
0
ActiveScaffold - custom show action
Hi all, I''ve added custom show action (as an action link - I want to use default one too). Everything renders well, but I''m missing a "Close" ([x]) button. So, I copied AS'' default _show.rhtml template and edited it a bit (just added custom output and removed label). However, when I click at "Close" I get error output: You have a nil object when you
2009 Mar 23
2
Select updates database?
I am running on Rails 2.2.2 on Solaris (and also on my mac) against mysql. For some reason, when I use a select in the partial, the database does not get updated with the changed value. I am using checkbox for other fields which works perfectly. I can provide more information if needed, but I would like the field to work as a dropdown instead of a text field. My Model:
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/.
2009 Oct 11
6
A simple editable grid for Rails
Hi All, I''ve been posting some queries about an editable grid but did not get any response. I''ve started writing my own - http://github.com/ckkashyap/rails_editable_grid I''d appreciate it very much if someone could comment on it! -- Regards, Kashyap
2008 Feb 01
1
Rails routing and active scaffold fight to the death
...C:/InstantRails/ruby/lib/ruby/gems/1.8/gems/mongrel-1.0.1-mswin32/ lib/mongrel/rails.rb:78:in `process'' ........... anyone have an idea of how to make this go away. It''s not causing anything to stop working, but it is really getting under my skin. It seems to be caused by activescaffold trying to replace its js files from the vendor/activescaffold/.../defaut/ directory to the above blackhole of a directory. I can see the files got replaced in that directory just fine, so why the exception???? Why the complaining? --~--~---------~--~----~------------~-------~--~----~ You receive...