similar to: acts as drop down

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

2006 Apr 26
6
get foreign key table data
Hi I?m trying to bring across all related data. My table clients has a foreign key field that stores the id of an organization How can I grab the details of the organization to use in the clients show.rhtml file? Thanks Scott -- Posted via http://www.ruby-forum.com/.
2014 Dec 01
2
Application for write permissions to CentOS wiki
On 1 December 2014 at 21:46, Jerry Amundson <jamundso at gmail.com> wrote: > On Mon, Dec 1, 2014 at 3:15 PM, Alan Bartlett <ajb at elrepo.org> wrote: >> On 1 December 2014 at 20:26, Karol Babioch <karol at babioch.de> wrote: >>> Am 11.10.2014 um 00:04 schrieb Karol Babioch: >>>> I hereby would like to ask for write permissions to the CentOS wiki.
2008 Jan 20
2
Reporting for Duty.
Hello to the AdminGroup, >From what I have been told (by a very reliable source (AY)), I should direct this for the attention of Ralph. In the nicest possible way, Community members Akemi and Ned (aka toracat and NedSlider) have been twisting my arm to get me to agree to join the Wiki editors. Being susceptible to the right sort of persuasion, I eventually agreed. Over the last few weeks I
2006 Apr 25
3
select boxe
yop, http://rubyonrails.org/api/classes/ActionView/Helpers/FormHelper.html ici j''ai vu qu''on pouvait g?n?rer des ?l?ment d''un formulaire gr?ce des m?thodes. Apres quelque petite recherches j''ai trouv? comment g?n?rer un select <%= select(''category'', ''category.id'', Category.find_all.collect {|category| category.nom})
2013 Dec 29
1
how to separate virtual delivery and authentication?
I have a "pure ldap" setting with postfix and dovecot. When using dovecot delivery, the recipient is checked via ldap. The same ldap query is used when authenticate. So, if I want to authenticate with the uid , I can't use a filter like uid=%u because the delivery will fail. I don't want to use %nor something else because I could use multiple e-mail addresses on a single
2006 Apr 24
4
creating a select box
Hi trying to create a select box in _form.rhtml. I have a table called organisations that contains fileds, 2 being ''id'' and ''name'' these are the fields I need to bring over to the clients _form.rhtml. whats the best way of going about that?? 2 ways i have seen suggested that I cant get to work -@organisations = Organisation.find_all placed this in def new
2006 Feb 25
5
Setting character encoding - do I do it with Rails or lighttpd?
I have a page which validates "tentatively," because the validator uses the default character encoding. None was specified apparently, so it falls back to UTF-8. How and where do I specify the character encoding? Pat
2006 Feb 10
2
Sortable + Draggable : doesn''t follow the mouse horizontally
When a ''draggable'' element is made ''sortable'', it no longer follows the mouse horizontally when you drag it. Is there a solution/workaround? TIA Alain
2006 Jan 21
1
Sortable Element with Partials?
Hi Everyone, I posted this last month and unfortunately, I didn''t recieve any replies. Maybe this time I''ll have better luck. I originally had my sortable element list working properly like so: <ul id="sortable_list"> <% @items.each do |item| %> <li id="item_<%= item.id %>"><%= image_tag "dragme.gif"
2006 Jun 01
4
can''t convert Fixnum into String ??
I have been getting this error message on various pages, just wondering if anyone could explain whats going wrong, and the best way to correct it code that is cuasing the problem is below @project = Project.find(:first, :conditions => "id = " + @purchaseorder.project_id) -- Posted via http://www.ruby-forum.com/.
2006 May 08
4
set forign key
hi, got a small problem below and not to sure how to overcome this using rails two tables involved with this projects and quotes each project has a field quote_id as a forign field. When a user is ready to upload a quote they are linked to quotes/new from the show project page. Once the quote is uploaded how can I then set the quote_id field with the correct key? -- Posted via
2006 May 10
2
gain value from form
I have the following form <%= start_form_tag :action => ''rejectQuoteSave'', :id => @project %> <p><label for="offer_reason_rejected"><span class="required">* </span>Reason</label><br/> <%= text_area ''offer'', ''reason_rejected'' %></p> <%= submit_tag
2006 Jun 18
2
Table Relationship for Select option list
I''m pretty new to developing web apps and need help with my database table design. I''m working on an inventory application to manage WLAN hardware. I''ve created a table to hold information on each device with the following (model refers to the manufacturer''s model number): create table devices ( id int not null auto_increment,
2012 Aug 01
0
known membership of the ZFS Working Group
I understand that some participants would prefer to keep their participation non-public, and so I do not expect the Group to have a home page at this time. In the absence of a web page, please can we list here the individual and organisational members who are *happy* for their membership to be known? This should not defocus from technical discussion, neither it is intended to detract from this
2014 Dec 04
0
Application for write permissions to CentOS wiki
Hi, Am 01.12.2014 um 23:21 schrieb Alan Bartlett: > Karol -- If you have created a wiki account with an embedded space > between forename and surname please delete it and create a new > account, as Jerry has mentioned, above. Okay, I've messed that up. Is there a way for me (button/link) to delete my account on my own? Otherwise I hereby would like to request for my account to be
2014 Dec 01
2
Application for write permissions to CentOS wiki
On 1 December 2014 at 20:26, Karol Babioch <karol at babioch.de> wrote: > Am 11.10.2014 um 00:04 schrieb Karol Babioch: >> I hereby would like to ask for write permissions to the CentOS wiki. >> I've just created a new account. My username is "Karol Babioch" [1]. > > Ping. Pong! A home page has been created for you and you should now be able to create
2006 Jun 05
2
Pagination, how to in rails?
Hi, Im creating a few reports for a system using ind_by_sql Are there any built in features that I can use to paginate the results and how can this be achived? Thanks -- Posted via http://www.ruby-forum.com/.
2006 Jun 05
5
apply more than one condition to a find(:all
Hi I have the find statement below, how can I apply another condition to this to say AND status > 3 @projectReport = Project.find(:all, :conditions => ''status != 7'') Thanks scott -- Posted via http://www.ruby-forum.com/.
2006 May 09
2
retrieve previous id
Hi, I have this piece of code, if @quote.save flash[:notice] = ''Quote was successfully created.'' #return id of preiously inserted quote #enter this id in the correct related project field redirect_to :action => ''list'' end How can I return the id of the saved data? -- Posted via http://www.ruby-forum.com/.
2006 May 12
4
default value in text field
hi, This should be really simple, but i cant seem to find the answer anywhere!! In my _form.rhtml I have the following text field, how can I define a default value? <%= text_field ''purchaseorder'', ''number'' %> -- Posted via http://www.ruby-forum.com/.