[Rails] Re: Dropdown List

2015-09-02 Thread Milley Duke
Hi Colin, The query which i am using on my form is : = f.select(:word_ids, Word.order(:text).collect {|w| [ w.text, w.id ] }, { label: "Words" }, { multiple: true }) I am able to select a value from dropdown list of values.If i want to select the same value again then i can't see that value

Re: [Rails] Re: Dropdown List

2015-09-02 Thread Colin Law
On 2 September 2015 at 12:39, Milley Duke wrote: > Hi Colin, > > The query which i am using on my form is : > > = f.select(:word_ids, Word.order(:text).collect {|w| [ w.text, w.id ] }, > { label: "Words" }, { multiple: true }) > > I am able to select a value from dropdown