similar to: drop down list

Displaying 20 results from an estimated 200 matches similar to: "drop down list"

2006 Jul 01
22
TextDrive complaints
Hi all, I have deployed my Ruby On Rails application on TextDrive. At first everything seamed to be fine. However, lately, response time of my application is incredible slow. Worse, lately there is also a lot of downtime. I have contacted their support desk, however, they do not respond (at all, or very, very late). Has anyone else these experiences with TextDrive? And if so, what did you do
2006 Aug 13
3
escape block using red cloth
Hi all, Is it possible to configure red cloth to escape a block such as: ------------------------------------------------------------------ Hello, _this_ works *beautifull* [code lang="ruby"] def foo bar end [/code] ------------------------------------------------------------------ The text in the [code] block should not be parsed by Red Cloth''s to_html method. I cannot
2006 Jul 04
4
Please help me
Hi all, I''m getting the list of my projects in the page. But i want to get the list according the month, i.e., if i select july in the drop down then i should get the list of projects done in the month of july.. Please reply.. Regards, Harish -- Posted via http://www.ruby-forum.com/.
2006 Aug 17
1
Scroll down
i have a long list of outputs i need to display on a page. I though a scroll down bar would be the best idea. Each output has a letter identifying the topic it belongs to. for example Nigeria Af Af for Africa France Eu and etc. what is the best way for handling this and how would i do that??? -- Posted via http://www.ruby-forum.com/.
2006 Aug 18
1
Delete Button
My delete button keeps adding. and edit doesnt work either i checked the controller file, but everything is in place. what could the problem be??? -- Posted via http://www.ruby-forum.com/.
2006 Aug 17
4
Migration newbie
In an migration file there is one up and one down method. Below is from Agile Web Development with Rails: class CreateOrderHistories < ActiveRecord::Migration def self.up create_table :order_histories do |t| t.column :order_id, :integer, :null => false t.column :created_at, :timestamp t.column :notes, :text end end def self.down drop_table :order_histories end end Why is there a drop
2011 Aug 16
2
SIOCSIFADDR: No such device
I have encountered the error " SIOCSIFADDR: No such device" in one my Xen Guest (others VM are okay, and have checked they are using different mac address). Follow this link (http://blog.kabisa.nl/2009/12/11/xen-how-to-fix-siocsifaddr-no-such-device/) to remove the file "/etc/udev/rules.d/z25_persistent-net.rules. " and didn''t help My guest VM is running Ubuntu
2006 Jul 13
1
what does the ''select(x,y,w) function/command do in Rails?
Hello there, I''m new with Ruby and I''m trying to develop a web app. I''m following an example from the book and they used ''select( )'' with three parameters...what exactly does ''select ( )'' do? I''m trying to have a scroll down button that will let me select one of the options. Is there another way to accomplish this? I
2006 Jul 04
13
NewBie question
Hi, I m very new to Ruby. I bought a book "Ruby on Rails" and I think I understand some concepts. My question is : Is there a way to not use "Cookies" or "Sessions Variables" to keep some information about the user. I ask this question because I would like to prevent some cases where the user browser won''t accept cookies. I m from Asp 3.0, and I
2006 May 30
4
Selectboxes and Rails
Hey was wondering how to setup a select box that when I call Model.new(params[:model]) it will automatically putit into the db... I tried <select name="home_bedrooms" id="home_bedrooms"> <option value="0">0</option> ... </select> then when I do @home = Home.new(params[:home]) that field doesnt insert into the db.. any ideas? -Ray
2005 Aug 17
5
asynchronous Ajax.Updater
I had one point in my project where I needed a synchronous Ajax call; in other words, I wanted the Ajax.Updater call to not return until the content of my page had been updated. However, I found that if you call Ajax.Updaterwith the {asynchronous: false} option, the onComplete() function would never be called and your content would not be updated. Was this the intended behavior? I added the
2005 Oct 17
7
Ajax.MultiUpdater ?
Hi, I''m using prototype within ruby on rails. One limitation I''d like to overcome is the restriction of beeing able to update just one html elements content using from_remote_tag or link_to_remote. AFAICS this is just a restriction of the form_remote_tag/link_to_remote implementation and it''s underlying Ajax.Updater class. Right? In theorie there should be no problem,
2006 Jun 26
9
table name
hello freinds... I m very new to ruby on rails and i m facing a problem... whenever i add Scaffold table and try running in that broser it shos error that the particular tbale doesnot exist.... also it changes the name of the table , for eg.table names Recipe gets changed to Recipes and in order to get ountput i need to change the name of the table TO Recipies........is there any reason to
2006 Mar 10
8
XML Databinding frameworks
Are there any XML databinding frameworks available for Ruby / Rails, such as Castor or JaXB for Java? Also are there framework such as Apache Axis for WebServices for Rails or Ruby? Regards, Harm de Laat -------------- next part -------------- An HTML attachment was scrubbed... URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060310/3cf0cfd3/attachment.html
2006 Feb 01
5
lighttpd not starting on os X (intel)
Hi all, I''m followed the instructions written here to prepare my new iMac for Ruby / Rails developement: http://hivelogic.com/articles/2005/12/01/ruby_rails_lighttpd_mysql_tiger When I run script/server I get the following output: harm-de-laats-computer:~/rails/test harmdelaat$ script/server => Booting lighttpd (use ''script/server webrick'' to force WEBrick) =>
2006 Nov 01
0
Need help connecting Alcatel 4400 PBX to Asterisk
Hi there I have a TE110P card fitted in my linux box running : Linux version 2.6.9-5.ELsmp (bhcompile@decompose.build.redhat.com) (gcc version 3.4.3 20041212 (Red Hat 3.4.3-9.EL4)) #1 SMP Wed Jan 5 19:30:39 EST 2005 I followed the installation steps on digium website...no errors reported. The modules seem to have loaded...here's what lsmod shows: Module Size Used by
2006 Jun 27
3
problem
Dear friends, i while working on ruby on rails ... i have created form and it shows , SHOW, DELETES EDIt but when i click on that it is howing error "Couldn''t find TblAdgroup without an ID".. pls help me out shweta -- Posted via http://www.ruby-forum.com/.
2006 Jan 13
3
related drop down list / ajax
Hi all, I''m trying to create a related dropdown box: In my view: <select name="category" id="category"> <option value="">Select category</option> <% @categories.each do |category| %> <option value="<%= category.id %>"> <%= category.title %> </option> <% end %>
2006 Jan 02
2
charting (freechart)
Hi all, We are a Java development team, but we are considering rails for our next project. However in this webapplication I need to do a fair amount of charting. In Java we used JFreechart (http://www.jfree.org/jfreechart/index.php) for this purpose. What are my options for charting in Ruby? Regards, Harm de Laat -------------- next part -------------- An HTML attachment was scrubbed... URL:
2005 Dec 25
2
[repost] newbie questions
Hi all, I''m following the shop example in ''Agile Web Development with Rails''. I would like to extend the checkout screen, in such a way people can change the number of items they have selected in there cart. In my controller I have: def checkout @cart = find_cart @items = @cart.items if @items.empty?