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?
Thanks,
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?
Thanks,
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
Form tag must be before tag or inside
tag otherwise it will not work.
|