Hello,

Normally and in a lot of tutorials i see the declaration of a form inside 
the controller and onlly {{=form}} inside the view .... Sadly i am working 
in a big website with hundred files and they did like the declaration of 
the form with Helpers inside the view. SO, the problem is that when i 
submit i want the value i putted inside a form. and Thanks to the ajax ( 
this part is working and already done ) i will  pass it to the controller.
So the main question is : 

{{
    
=FORM(INPUT(_name='category',_value='Category'),INPUT(_type='submit',_value='submit'),_id='categ')
}}


<script>
jQuery('#categ').submit(function() {
  ajax('{{=URL('categ',vars=dict(value=WAITING FOR THE VALUE))}}');
  return false;
});
</script>

How do i get the value of the form catefory

PLZ HELP MEEE

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to