I have designed the page as Border layout and in each section I have included different zul pages for different border layout sections. That means for North i have included the header.zul and for south I have included footer.zul in that manner.I have sidebar in the west and it icontans some links for navigation. When each link is clicked, the center content should be changed. Now my question is how do I dynamically include the zul file to the centre area? when each link is clicked?
1
There are 1 best solutions below
Related Questions in ZK
- Setter is called after onChange method
- Using go-zookeeper api to create TTL Node always shows invalid arguments
- Snarkjs verification_key.zkey how to use it frontend to calculate more optimally?
- What trigger to update org.eclipse.wst.server.core
- Integration ZKTecho data with django project
- ZKSpringBoot HomePage Isnt Being Used
- zookeeper register >>Connection refused: no further information
- Use keyup event in ZK
- How to disable ZK CKeditor Component
- Event/information pass from servlet to ZK Mvvm
- ZK Calendar "x more" link does not pop up a window with the x more events
- borderlayout is not loading full on the screen
- Resolve background image url Zk
- ZK Method setInputmode not found for class org.zkoss.zul.Textbox
- zk pages not correctly visualized in eclipse
Related Questions in ZK-GRID
- How to add Emoji plugin to CKEditor used in ZK framework?
- Disable browser's autocomplete credentials in input type password in ZKoss
- not able get the rows in the grid zk java
- Group the row in the grid zk framework
- ZK how to add grid based on user input
- How to add many <row> components in ZK in specific position
- How to Dynamically apply our own custom themes in zk 8.5
- Zk Macrocomponent Listbox rendering
- Background changes color when hovering
- ZK listbox auto width for last row
- How can I get this value in Java Class?
- Get value from form of ZK
- How to change grid default status in a ZK theme?
- NotifyChange part of a model in ZK
- Refresh data in MVVM page after modal close (written in MVC)
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?
Executions.getCurrent().createComponents(java.lang.String uri, Component parent, java.util.Map<?,?> arg)is probably the function you're looking for.You can call it like this:
Executions.getCurrent().createComponents("file.zul", parentContainer, null);So you attach an event handler to your links. Then you can use above function to create the components from your
ZULfiles and add them to your center.