Hello all, i have this view:

<form name='test' id='test'>
    <input type='checkbox' id='filter_1' value='1'><label 
for='filter_1'>Test me</label>
    <div>
        {{=LOAD('chart','test.load',ajax=True, target='test_div', )}}
    </div>

    <button id='try' type='button'>Test this out</button>

    <script>
    $('#try').click(function(){
        jQuery('#test_div').get(0).reload()
    });
    </script>
</form>


and i'm trying to submit that for when reloading my "test.load"...

here's the controller:

def test():
    print request.vars
    ....


when i print those request.vars i'm just seeing empty storage.  Is there 
something else i need to do to submit the form when reloading like this?

Thank you

Jason

-- 
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