Sumit Srivastava
2012-Nov-29 08:47 UTC
Adding a input field (select box) to a cell in a table that is rendered from controller
Hi, I have a view in which a table is created with one head elements of the table are defined like, %table.data-table{''data-searchable'' => ''true''} %thead %tr %th Email %th.no-sort Name %th Registered %tbody The table is populated through controller. I need to add a select box to every Email cell. How to add this? -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To view this discussion on the web visit https://groups.google.com/d/msg/rubyonrails-talk/-/q2DqSWbPWH0J. For more options, visit https://groups.google.com/groups/opt_out.
Colin Law
2012-Nov-29 10:15 UTC
Re: Adding a input field (select box) to a cell in a table that is rendered from controller
On 29 November 2012 08:47, Sumit Srivastava <sumit.theinvincible-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> Hi, > > I have a view in which a table is created with one head elements of the > table are defined like, > > %table.data-table{''data-searchable'' => ''true''} > %thead > %tr > %th Email > %th.no-sort Name > %th Registered > %tbody > > > The table is populated through controller. I need to add a select box to > every Email cell. How to add this?The Rails Guide on Form Helpers shows you how to make select boxes. Remember that for valid html the entire table must lie within the form, or each cell must contain its own form. Colin> > -- > You received this message because you are subscribed to the Google Groups > "Ruby on Rails: Talk" group. > To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To unsubscribe from this group, send email to > rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To view this discussion on the web visit > https://groups.google.com/d/msg/rubyonrails-talk/-/q2DqSWbPWH0J. > For more options, visit https://groups.google.com/groups/opt_out. > >-- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit https://groups.google.com/groups/opt_out.
Jordon Bedwell
2012-Nov-29 10:18 UTC
Re: Adding a input field (select box) to a cell in a table that is rendered from controller
On Thu, Nov 29, 2012 at 4:15 AM, Colin Law <clanlaw-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org> wrote:> The Rails Guide on Form Helpers shows you how to make select boxes. > Remember that for valid html the entire table must lie within the > form, or each cell must contain its own form.Aren''t tables are violation of the HTML spec anyways? I thought it was only div,section,span that could be inside of forms i could be wrong about that but I could have swore reading that somewhere in the specs for HTML. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit https://groups.google.com/groups/opt_out.
sumit srivastava
2012-Nov-29 10:25 UTC
Re: Adding a input field (select box) to a cell in a table that is rendered from controller
Actually Jquery dataTables is being used to fetch the data and create the table. Regards Sumit Srivastava The power of imagination makes us infinite... On 29 November 2012 15:48, Jordon Bedwell <envygeeks-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> On Thu, Nov 29, 2012 at 4:15 AM, Colin Law <clanlaw-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org> wrote: > > The Rails Guide on Form Helpers shows you how to make select boxes. > > Remember that for valid html the entire table must lie within the > > form, or each cell must contain its own form. > > Aren''t tables are violation of the HTML spec anyways? I thought it was > only div,section,span that could be inside of forms i could be wrong > about that but I could have swore reading that somewhere in the specs > for HTML. > > -- > You received this message because you are subscribed to the Google Groups > "Ruby on Rails: Talk" group. > To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To unsubscribe from this group, send email to > rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > For more options, visit https://groups.google.com/groups/opt_out. > > >-- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit https://groups.google.com/groups/opt_out.
Colin Law
2012-Nov-29 10:37 UTC
Re: Adding a input field (select box) to a cell in a table that is rendered from controller
On 29 November 2012 10:18, Jordon Bedwell <envygeeks-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> On Thu, Nov 29, 2012 at 4:15 AM, Colin Law <clanlaw-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org> wrote: >> The Rails Guide on Form Helpers shows you how to make select boxes. >> Remember that for valid html the entire table must lie within the >> form, or each cell must contain its own form. > > Aren''t tables are violation of the HTML spec anyways? I thought it was > only div,section,span that could be inside of forms i could be wrong > about that but I could have swore reading that somewhere in the specs > for HTML.I think you are wrong there, I am sure table is valid inside a form. I have just tried an example in the w3c html validator and it was happy with it. Colin -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit https://groups.google.com/groups/opt_out.
Colin Law
2012-Nov-29 10:39 UTC
Re: Adding a input field (select box) to a cell in a table that is rendered from controller
On 29 November 2012 10:25, sumit srivastava <sumit.theinvincible-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> Actually Jquery dataTables is being used to fetch the data and create the > table.So the question is nothing to do with Rails then? Colin> > Regards > Sumit Srivastava > > The power of imagination makes us infinite... > > > > On 29 November 2012 15:48, Jordon Bedwell <envygeeks-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: >> >> On Thu, Nov 29, 2012 at 4:15 AM, Colin Law <clanlaw-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org> wrote: >> > The Rails Guide on Form Helpers shows you how to make select boxes. >> > Remember that for valid html the entire table must lie within the >> > form, or each cell must contain its own form. >> >> Aren''t tables are violation of the HTML spec anyways? I thought it was >> only div,section,span that could be inside of forms i could be wrong >> about that but I could have swore reading that somewhere in the specs >> for HTML. >> >> -- >> You received this message because you are subscribed to the Google Groups >> "Ruby on Rails: Talk" group. >> To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >> To unsubscribe from this group, send email to >> rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >> For more options, visit https://groups.google.com/groups/opt_out. >> >> > > -- > You received this message because you are subscribed to the Google Groups > "Ruby on Rails: Talk" group. > To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To unsubscribe from this group, send email to > rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > For more options, visit https://groups.google.com/groups/opt_out. > >-- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit https://groups.google.com/groups/opt_out.
sumit srivastava
2012-Nov-29 10:55 UTC
Re: Adding a input field (select box) to a cell in a table that is rendered from controller
I need to add a functionality to a code someone else wrote. Just found out that, the dataTables jquery is just being used to sort and paginate the table. But the table is actually populated through controller. Regards Sumit Srivastava The power of imagination makes us infinite... On 29 November 2012 16:09, Colin Law <clanlaw-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org> wrote:> On 29 November 2012 10:25, sumit srivastava > <sumit.theinvincible-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > > Actually Jquery dataTables is being used to fetch the data and create the > > table. > > So the question is nothing to do with Rails then? > > Colin > > > > > Regards > > Sumit Srivastava > > > > The power of imagination makes us infinite... > > > > > > > > On 29 November 2012 15:48, Jordon Bedwell <envygeeks-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > >> > >> On Thu, Nov 29, 2012 at 4:15 AM, Colin Law <clanlaw-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org> > wrote: > >> > The Rails Guide on Form Helpers shows you how to make select boxes. > >> > Remember that for valid html the entire table must lie within the > >> > form, or each cell must contain its own form. > >> > >> Aren''t tables are violation of the HTML spec anyways? I thought it was > >> only div,section,span that could be inside of forms i could be wrong > >> about that but I could have swore reading that somewhere in the specs > >> for HTML. > >> > >> -- > >> You received this message because you are subscribed to the Google > Groups > >> "Ruby on Rails: Talk" group. > >> To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > >> To unsubscribe from this group, send email to > >> rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > >> For more options, visit https://groups.google.com/groups/opt_out. > >> > >> > > > > -- > > You received this message because you are subscribed to the Google Groups > > "Ruby on Rails: Talk" group. > > To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > > To unsubscribe from this group, send email to > > rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > > For more options, visit https://groups.google.com/groups/opt_out. > > > > > > -- > You received this message because you are subscribed to the Google Groups > "Ruby on Rails: Talk" group. > To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To unsubscribe from this group, send email to > rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > For more options, visit https://groups.google.com/groups/opt_out. > > >-- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit https://groups.google.com/groups/opt_out.
Colin Law
2012-Nov-29 10:59 UTC
Re: Adding a input field (select box) to a cell in a table that is rendered from controller
On 29 November 2012 10:55, sumit srivastava <sumit.theinvincible-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> I need to add a functionality to a code someone else wrote. Just found out > that, the dataTables jquery is just being used to sort and paginate the > table. But the table is actually populated through controller.So what do you not know how to do? You have read the guide I suggested I hope. Please don''t top post, it makes it difficult to follow the thread. Post your replies inline in previous message. Thanks. Colin> > > Regards > Sumit Srivastava > > The power of imagination makes us infinite... > > > On 29 November 2012 16:09, Colin Law <clanlaw-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org> wrote: >> >> On 29 November 2012 10:25, sumit srivastava >> <sumit.theinvincible-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: >> > Actually Jquery dataTables is being used to fetch the data and create >> > the >> > table. >> >> So the question is nothing to do with Rails then? >> >> Colin >> >> > >> > Regards >> > Sumit Srivastava >> > >> > The power of imagination makes us infinite... >> > >> > >> > >> > On 29 November 2012 15:48, Jordon Bedwell <envygeeks-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: >> >> >> >> On Thu, Nov 29, 2012 at 4:15 AM, Colin Law <clanlaw-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org> >> >> wrote: >> >> > The Rails Guide on Form Helpers shows you how to make select boxes. >> >> > Remember that for valid html the entire table must lie within the >> >> > form, or each cell must contain its own form. >> >> >> >> Aren''t tables are violation of the HTML spec anyways? I thought it was >> >> only div,section,span that could be inside of forms i could be wrong >> >> about that but I could have swore reading that somewhere in the specs >> >> for HTML. >> >> >> >> -- >> >> You received this message because you are subscribed to the Google >> >> Groups >> >> "Ruby on Rails: Talk" group. >> >> To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >> >> To unsubscribe from this group, send email to >> >> rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >> >> For more options, visit https://groups.google.com/groups/opt_out. >> >> >> >> >> > >> > -- >> > You received this message because you are subscribed to the Google >> > Groups >> > "Ruby on Rails: Talk" group. >> > To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >> > To unsubscribe from this group, send email to >> > rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >> > For more options, visit https://groups.google.com/groups/opt_out. >> > >> > >> >> -- >> You received this message because you are subscribed to the Google Groups >> "Ruby on Rails: Talk" group. >> To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >> To unsubscribe from this group, send email to >> rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >> For more options, visit https://groups.google.com/groups/opt_out. >> >> > > -- > You received this message because you are subscribed to the Google Groups > "Ruby on Rails: Talk" group. > To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To unsubscribe from this group, send email to > rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > For more options, visit https://groups.google.com/groups/opt_out. > >-- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit https://groups.google.com/groups/opt_out.
sumit srivastava
2012-Nov-29 11:04 UTC
Re: Adding a input field (select box) to a cell in a table that is rendered from controller
On 29 November 2012 16:29, Colin Law <clanlaw-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org> wrote:> On 29 November 2012 10:55, sumit srivastava > <sumit.theinvincible-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > > I need to add a functionality to a code someone else wrote. Just found > out > > that, the dataTables jquery is just being used to sort and paginate the > > table. But the table is actually populated through controller. > > So what do you not know how to do? You have read the guide I suggested I > hope. >There is nothing in the view defined to add the form with select box. The data is coming from the controller directly as json. So how to add a select box from the controller to the table?> Please don''t top post, it makes it difficult to follow the thread. > Post your replies inline in previous message. Thanks. > > Colin > > > > > > > Regards > > Sumit Srivastava > > > > The power of imagination makes us infinite... > > > > > > On 29 November 2012 16:09, Colin Law <clanlaw-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org> wrote: > >> > >> On 29 November 2012 10:25, sumit srivastava > >> <sumit.theinvincible-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > >> > Actually Jquery dataTables is being used to fetch the data and create > >> > the > >> > table. > >> > >> So the question is nothing to do with Rails then? > >> > >> Colin > >> > >> > > >> > Regards > >> > Sumit Srivastava > >> > > >> > The power of imagination makes us infinite... > >> > > >> > > >> > > >> > On 29 November 2012 15:48, Jordon Bedwell <envygeeks-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> > wrote: > >> >> > >> >> On Thu, Nov 29, 2012 at 4:15 AM, Colin Law <clanlaw-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org> > >> >> wrote: > >> >> > The Rails Guide on Form Helpers shows you how to make select boxes. > >> >> > Remember that for valid html the entire table must lie within the > >> >> > form, or each cell must contain its own form. > >> >> > >> >> Aren''t tables are violation of the HTML spec anyways? I thought it > was > >> >> only div,section,span that could be inside of forms i could be wrong > >> >> about that but I could have swore reading that somewhere in the specs > >> >> for HTML. > >> >> > >> >> -- > >> >> You received this message because you are subscribed to the Google > >> >> Groups > >> >> "Ruby on Rails: Talk" group. > >> >> To post to this group, send email to > rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > >> >> To unsubscribe from this group, send email to > >> >> rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > >> >> For more options, visit https://groups.google.com/groups/opt_out. > >> >> > >> >> > >> > > >> > -- > >> > You received this message because you are subscribed to the Google > >> > Groups > >> > "Ruby on Rails: Talk" group. > >> > To post to this group, send email to > rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > >> > To unsubscribe from this group, send email to > >> > rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > >> > For more options, visit https://groups.google.com/groups/opt_out. > >> > > >> > > >> > >> -- > >> You received this message because you are subscribed to the Google > Groups > >> "Ruby on Rails: Talk" group. > >> To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > >> To unsubscribe from this group, send email to > >> rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > >> For more options, visit https://groups.google.com/groups/opt_out. > >> > >> > > > > -- > > You received this message because you are subscribed to the Google Groups > > "Ruby on Rails: Talk" group. > > To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > > To unsubscribe from this group, send email to > > rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > > For more options, visit https://groups.google.com/groups/opt_out. > > > > > > -- > You received this message because you are subscribed to the Google Groups > "Ruby on Rails: Talk" group. > To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To unsubscribe from this group, send email to > rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > For more options, visit https://groups.google.com/groups/opt_out. > > >-- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit https://groups.google.com/groups/opt_out.
Colin Law
2012-Nov-29 11:34 UTC
Re: Adding a input field (select box) to a cell in a table that is rendered from controller
On 29 November 2012 11:04, sumit srivastava <sumit.theinvincible-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> > On 29 November 2012 16:29, Colin Law <clanlaw-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org> wrote: >> >> On 29 November 2012 10:55, sumit srivastava >> <sumit.theinvincible-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: >> > I need to add a functionality to a code someone else wrote. Just found >> > out >> > that, the dataTables jquery is just being used to sort and paginate the >> > table. But the table is actually populated through controller. >> >> So what do you not know how to do? You have read the guide I suggested I >> hope. > > > There is nothing in the view defined to add the form with select box. The > data is coming from the controller directly as json. So how to add a select > box from the controller to the table?If you want a select box then you have to do that in the view. Colin> >> >> Please don''t top post, it makes it difficult to follow the thread. >> Post your replies inline in previous message. Thanks. >> >> Colin >> >> > >> > >> > Regards >> > Sumit Srivastava >> > >> > The power of imagination makes us infinite... >> > >> > >> > On 29 November 2012 16:09, Colin Law <clanlaw-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org> wrote: >> >> >> >> On 29 November 2012 10:25, sumit srivastava >> >> <sumit.theinvincible-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: >> >> > Actually Jquery dataTables is being used to fetch the data and create >> >> > the >> >> > table. >> >> >> >> So the question is nothing to do with Rails then? >> >> >> >> Colin >> >> >> >> > >> >> > Regards >> >> > Sumit Srivastava >> >> > >> >> > The power of imagination makes us infinite... >> >> > >> >> > >> >> > >> >> > On 29 November 2012 15:48, Jordon Bedwell <envygeeks-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> >> >> > wrote: >> >> >> >> >> >> On Thu, Nov 29, 2012 at 4:15 AM, Colin Law <clanlaw-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org> >> >> >> wrote: >> >> >> > The Rails Guide on Form Helpers shows you how to make select >> >> >> > boxes. >> >> >> > Remember that for valid html the entire table must lie within the >> >> >> > form, or each cell must contain its own form. >> >> >> >> >> >> Aren''t tables are violation of the HTML spec anyways? I thought it >> >> >> was >> >> >> only div,section,span that could be inside of forms i could be wrong >> >> >> about that but I could have swore reading that somewhere in the >> >> >> specs >> >> >> for HTML. >> >> >> >> >> >> -- >> >> >> You received this message because you are subscribed to the Google >> >> >> Groups >> >> >> "Ruby on Rails: Talk" group. >> >> >> To post to this group, send email to >> >> >> rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >> >> >> To unsubscribe from this group, send email to >> >> >> rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >> >> >> For more options, visit https://groups.google.com/groups/opt_out. >> >> >> >> >> >> >> >> > >> >> > -- >> >> > You received this message because you are subscribed to the Google >> >> > Groups >> >> > "Ruby on Rails: Talk" group. >> >> > To post to this group, send email to >> >> > rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >> >> > To unsubscribe from this group, send email to >> >> > rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >> >> > For more options, visit https://groups.google.com/groups/opt_out. >> >> > >> >> > >> >> >> >> -- >> >> You received this message because you are subscribed to the Google >> >> Groups >> >> "Ruby on Rails: Talk" group. >> >> To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >> >> To unsubscribe from this group, send email to >> >> rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >> >> For more options, visit https://groups.google.com/groups/opt_out. >> >> >> >> >> > >> > -- >> > You received this message because you are subscribed to the Google >> > Groups >> > "Ruby on Rails: Talk" group. >> > To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >> > To unsubscribe from this group, send email to >> > rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >> > For more options, visit https://groups.google.com/groups/opt_out. >> > >> > >> >> -- >> You received this message because you are subscribed to the Google Groups >> "Ruby on Rails: Talk" group. >> To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >> To unsubscribe from this group, send email to >> rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >> For more options, visit https://groups.google.com/groups/opt_out. >> >> > > -- > You received this message because you are subscribed to the Google Groups > "Ruby on Rails: Talk" group. > To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To unsubscribe from this group, send email to > rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > For more options, visit https://groups.google.com/groups/opt_out. > >-- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit https://groups.google.com/groups/opt_out.