Re: [web2py] component (LOAD)

2013-04-23 Thread Richard Vézina
This is solved! Thank you Anthony. https://groups.google.com/forum/?fromgroups=#!topic/web2py/35vyANapSfM Richard On Mon, Nov 12, 2012 at 2:52 PM, Richard Vézina ml.richard.vez...@gmail.com wrote: Thanks I will play with that soon. Richard On Mon, Nov 12, 2012 at 1:58 PM, Anthony

Re: [web2py] component (LOAD)

2013-04-23 Thread Arnon Marcus
??? Is this like a single-page-application implementation? When did that happen? -- --- 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

Re: [web2py] component (LOAD)

2013-04-23 Thread Richard Vézina
web2py_component() let you trigger when you want the LOAD or component is loaded... In my case, I don't want many tables to load at the same time, because it slow don't the app... So, I let to my user the control to load or not the component if the need it. I acheive that by embeded my compenent

[web2py] component (LOAD)

2012-11-12 Thread Richard
Hello, I would like to know if we have fine control over which component is loaded or not on a page. What I would like to do if it possible is to put many components in differents tabs on the same page, but only trigger the loading of those component when the user actually it the tab (to limit

Re: [web2py] component (LOAD)

2012-11-12 Thread Anthony
You can use Javascript to dynamically load a component on the client side based on user input/activity. Just call the web2py_component()http://code.google.com/p/web2py/source/browse/applications/welcome/static/js/web2py.js#111function directly. It's a Javascript function in web2py.js. The first

Re: [web2py] component .load

2010-12-30 Thread Jonathan Lundell
On Dec 29, 2010, at 3:25 PM, mattynoce wrote: hi all. i have a component i'm plugging into the middle of a page, but i want that component to act seamlessly with the rest of the page. i do NOT want the component to do what components usually do and act independently. i need to include

[web2py] component .load

2010-12-29 Thread mattynoce
hi all. i have a component i'm plugging into the middle of a page, but i want that component to act seamlessly with the rest of the page. i do NOT want the component to do what components usually do and act independently. i need to include variable files, and components are the only way i can find

Re: [web2py] component .load

2010-12-29 Thread Jonathan Lundell
On Dec 29, 2010, at 3:25 PM, mattynoce wrote: hi all. i have a component i'm plugging into the middle of a page, but i want that component to act seamlessly with the rest of the page. i do NOT want the component to do what components usually do and act independently. i need to include