2009/6/4 suki <[email protected]>: > > Somehow, my ajax form was working perfect without any format. After I > put it into a pretty looking table, added <table></table>, it did not > work. It works with <tr> <td> , but not <table>. > > Anyone has any idea? >
You have not shown the view code but I suspect you may have attempted to have something like <table> <form> <tr><td>...</td></tr></form> </table> Unfortunately this is not valid html, a form cannot span a row or a number of cells, though you may find it works in some browsers. 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 [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---

