After going through the example in the documentation i'm wondering if the 
issue has to do with the 

data-w2p_target="..."

that is generated by a web2py generated form.  In my case i'm building the 
form by hand.  I wonder if i need to "link" this to my component when 
building a form by hand? 



On Monday, December 7, 2015 at 1:23:00 PM UTC-5, Jason Solack wrote:
>
> So i tried loading this in the way described above and my form is still 
> not being submitted to the controller.  When i check to see if i can 
> serialize the form it has values in it by alerting it in javascript, but 
> web2py doesn't see it in my request.
>
> is there something i have to do to ensure that my form is being submitted 
> to the controller?  or is there a way to explicitly submit it?
>
> Thank you again and sorry for the confusion!
>
> On Sunday, December 6, 2015 at 8:50:21 PM UTC-5, Jason Solack wrote:
>>
>> So in this case i was just wanting to see if the form was submitted when 
>> reloading the component via:
>>
>>         jQuery('#test_div').get(0).reload()
>>
>>
>> and by printing the request.vars to the terminal i saw that it wasn't.  I 
>> will try your method $.web2py.component and see what results
>>
>> On Sunday, December 6, 2015 at 8:14:35 PM UTC-5, Anthony wrote:
>>>
>>> On Sunday, December 6, 2015 at 7:15:04 PM UTC-5, Jason Solack wrote:
>>>>
>>>> Sorry i'm not clear!  I'm trying to break up a reporting site and my 
>>>> initial idea was to use several LOAD components where in the past i was 
>>>> using ajax calls.  I like the component framework as it seems i can return 
>>>> HTML templates... it just feels cleaner.
>>>>
>>>> I have this component within the form, but i could keep all the 
>>>> components outside the form if that is required to have them passed to 
>>>> their corresponding controller.
>>>>
>>>> Another quick question on components.  Is there a way to wait for them 
>>>> to be loaded until called upon or must they be all loaded on the initial 
>>>> page load?
>>>>
>>>
>>> Still not quite clear what you are trying to do with the form (as it has 
>>> no action nor submit button). Anyway, you can always manually load and/or 
>>> reload a component as follows:
>>>
>>> First, create a div:
>>>
>>> <div id='mycomponent'></div>
>>>
>>> Then load a component into the div via:
>>>
>>> $.web2py.component('{{=URL('controller', 'function.load')}}', 
>>> 'mycomponent');
>>>
>>> Anthony
>>>
>>>

-- 
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 [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to