search for: bex_3000

Displaying 7 results from an estimated 7 matches for "bex_3000".

2006 Jun 21
5
Rails application into HTML frames
Hey, Just hoping I can get some pointers as I am completely new to Rails and I have followed some tutorials to makes a database of data that I need, but now I am completely stuck with how to make the Rails page appear within my frameset. Hope that made some sense! Thanks! Bex -- Posted via http://www.ruby-forum.com/.
2006 Aug 10
3
Radio buttons refusing to load checked...
Hi, Having big problems with radio buttons that just don''t make sense: <%= radio_button "events", "impact_type", true %> Positive <%= radio_button "events", "impact_type", false %> Negative This should create two radio buttons with the first one checked by default, right? Cos it doesn''t :( Any ideas would be great, Thanks,
2006 Jun 22
4
Shop plugin?
I hope I''m not completely off-base here but is there a shop plugin for ruby/rails that means I don''t have to write the code for a shop from scratch? Can''t seem to find one... Thanks! Bex -- Posted via http://www.ruby-forum.com/.
2006 Jun 22
2
Passing a value from one rhtml to another
I''m trying to find a way to get from one rhtml page to another and taking a value along to use in the second page. Basically a user clicks on one of many download links and what should appear on the next page is all the available stuff related to that download, so I think if I take the id number of the first page then i can use if statements in the second page? Sorry if that sounds
2006 Aug 04
0
Soap - how to read an array..?
Hiya, I''m currently setting up a soap client in ruby that is working fine with passing ints or strings, but I cannot pass arrays. Is this a soap problem or is there a special code thing you have to do to take in an array from a soap call? Thanks, Bex -- Posted via http://www.ruby-forum.com/.
2006 Jul 13
2
Simple dropdown menu
Hi, I''m quite new to this language and I''m having trouble finding out simple things like a dropdown menu in rhtml. I know I have to use <% select_tag %> but I''ve read lots of different ways to put in the options so I''m a bit confused. Options are hard-coded for the menu I''m trying to create so no database is involved! Thanks v much! Bex --
2006 Jul 19
5
SOAP on rails? Confused...
Hi, Ive been struggling with the SOAP client things to do with rails as I''m not sure how to do what I need to do. So far I have: class SOAPclient < SOAP::RPC::StandaloneServer def on_init setup = gui_controller.new add_method(setup, "submit") end end server = SOAPclient.new("http://127.0.0.1:3000", "http://192.168.0.5", 8080)