I would like to load different web2py components in the same view, but not at the same time. I have 5 .load files which have form fields for a different scenario, these are called dynamically by an onchange select script. Is it possible with web2py to do this?
1
There are 1 best solutions below
Related Questions in WEB2PY
- How to limit a query using combination of integer and datetime.date fields
- Why am I getting Exception Error: 'Field' object has no attribute '__dir__' when uploading images
- web2py basic testing, view can't find different dict keys passed in controller
- Why does this error occur when searching in web2py
- Ways to render dot/graphviz in web2py?
- web2py Select min value from join
- In web2py, when I try to append a pandas series to a new data frame, I don't see any data in the dataframe. What could be the reason?
- "unable to import requests" in web2py even though requests is accessible directly through python
- web2py: How to target a div using the response.menu
- web2py: left-outer join not giving all records on left
- web2py: Prevent delete action on the A() helper depending on the result of the callback
- Using temporary files and folders in Web2py app
- web2py: How to execute further code after ajax call
- web2py: custom forms can not edit anymore after submitting
- How to solve a duplicate column name error in web2py
Related Questions in WEB2PY-MODULES
- web2py: custom forms can not edit anymore after submitting
- How to set IS_NOT_EMPTY and string (not included 0-9) in web2py data structure
- py4web DAL, web2py - (Legacy) database exploration - how to get all tables, fields, etc?
- Requires gitpython module, but not installed or incompatible version: No module named applications.admin.modules.git
- Upload wav file and save in directory using python
- Web2py Scheduler Waiting for a task to complete before starting a new task launched from different UI
- How do I rename a module in Sahana Eden?
- Web2py Scheduler is creating "Idle in Transaction" process with PostgreSQL
- Web2py on uwsgi and nginx upstream timed out (110: Connection timed out) while reading upstream
- Web2Py Scheduler crashing the Postgress DB
- Web2py Modules: Couldn't find a tree builder with the features you requested: html.parser. Do you need to install a parser library?
- Install web2py on domain hosting
- how to use jenkins and devops for .net and python development work
- Web2py: ImportError: No module named patch while trying to import modules in the web2py Modules directory
- Web2py: <type 'exceptions.ImportError'> (ImportError("Cannot import module 'applications.*.modules.paramiko'",)
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Yes, but in that case, don't use the
LOAD()helper in the web2py view, as that will generate Javascript that loads the component immediately upon page load. Instead, create a div with an id to hold the component, and have youronchangeevent handler call theweb2py_component()function with the id of the div as the target: