Tagged Questions

ZK is an open-source Ajax framework for modern Java web applications.

learn more… | top users | synonyms

12
votes
5answers
3k views

Real-world ZK vs GWT experience

A fellow developer and I are putting together a proposal for a new application, and we've presented both ZK and GWT to be possible choices. After messing around with both, I'd prefer to move ahead ...
8
votes
4answers
2k views

Any real-world experience of the “ZK” Ajax framework?

Does anyone have real-world experience of ZK that they can pass on? The marketing blurb on their web site makes it all sound too good to be true. Any issues with performance, browser compatibility, ...
3
votes
4answers
60 views

How to check if element is off-screen

I need to check with JQuery if a DIV element is not falling off-screen. The elements is visible and displayed according CSS attributes but could be intentionally placed off-screen by: position: ...
3
votes
1answer
105 views

zk: when to create widget children?

First off: I'm fairly new to zk. I try to create a component that does a lot of client side processing (think image editing). Therefore, I would like to create a widget that creates it's own child ...
3
votes
3answers
624 views

zk framework lack of popularity

Based on ZK's website and the list of companies using it, it seems a far better alternative to JSF and other JEE front-ends. However when I searched zk jobs there's little or none compared to JSF and ...
3
votes
1answer
410 views

Session hijacking prevention in ZK

I am extremely new to the web-development scene, but I was wondering: Does anybody know what mechanisms does the ZK framework use in order to prevent session hijacking?
3
votes
2answers
1k views

Getting value from session using zk

i am configured the zk with struts 1 . i created a list and set in the session. List<String> nameList = new ArrayList<String>(); nameList.add( "xxx" ); nameList.add( "yyy" ); ...
2
votes
1answer
84 views

SQL error:8152, but not over max?

I'm part of a team writing an ERP using , Seam, and Jboss, and on one of my pages, I keep getting an SQL error: 8152 whenever I try to input something. SQL error:8152, for those of you who don't know, ...
2
votes
1answer
260 views

ZK : Design Pattern : Paging through large amounts of data?

I would like some advice on how to tackle paging and sorting through large amounts of data. At the moment, I retrieve all our user data and stick it in a listbox. This is great for now, but when we ...
2
votes
3answers
327 views

ZK - inject Spring beans directly into ZK beans

Is it possible to inject Spring beans directly into ZK backing beans? In tutorials such as this I've found only an example, where application context was extracted manually from web application ...
2
votes
3answers
189 views

SmartGWT, ZK and GenericFrame - Online Homework

Good day, Our school, a small high school in semi-rural New Zealand, is currently looking into online homework solutions. Being one of the IT guys, I have been asked to look into some of the ...
2
votes
2answers
2k views

Using ZK Tree component, how do I remove Treeitems from a Treechildren node

Does anyone know how to remove Treeitems from a Treechildren node in ZK? I have tried using an iterator and removeChild but a ConcurrentModificationException! List<Treeitem> myTreeItems = ...
2
votes
3answers
1k views

ZK ajax framework

Can ZK easily be integrated in a struts web application?
1
vote
1answer
19 views

How to tie zk components to objects or variables?

Say I have a zul page like so: <zk> <tree id="tree1"> <tree id="tree2"> </zk> I need to create an object which can be set to different zk components depending on conditions. ...
1
vote
2answers
55 views

Page navigation/workflow framework in Java

I've been tasked to investigate page navigation/workflow for a system, basically our architects call this 'orchestration'. We use ZK as our view/model and controller framework and would like to ...
1
vote
1answer
54 views

Get Servlet Output Stream in ZK

In case of Servlets we have, protected void doGet(HttpServletRequest req, HttpServletResponse resp){ resp.getOuputStream().write(somthing); } the above gives servlet output stream is ...
1
vote
2answers
88 views

ZK onKeyUp with regex

I am trying to make zk textbox behave like only numeric values . For this above code works great <textbox id="telNo" xmlns:w="client" > <attribute w:name="doKeyPress_"> function(evt){ ...
1
vote
2answers
123 views

expand/collapse zk panel with javascript

I wanna click on a ZK's borderlayout(collapsible "East" OR "North" OR...) to open it temporarily with javascript. what should I do? thanks in advance buddies. UPDATE: When it is closed, by clicking ...
1
vote
1answer
102 views

In ZK, in my GenericForwardComposer class, how can I capture all onClick and onChange events?

I know that I can capture a specific button or text field if I define an onClick$id method with a matching id. I'd like to have a generic onClick-something and onChange-something method that gets ...
1
vote
0answers
53 views

How do I get the current DOM with Selenium Java 2.8?

I'm using the latest version of Selenium and the chromedriver to test a ZK application. During the test, I'd like to dump the DOM (or part of it) to help me find the elements I need (and probably ...
1
vote
3answers
564 views

Comparison between Vaadin and ZK

Does someone know of a comparison between ZK and Vaadin? I'm especially interested which of the two is better suited for a dynamic web app (i.e. where the layout and POJOs are defined at runtime and ...
1
vote
1answer
112 views

ZK: Listen for all descendants’ events

I’m currently developing a ZK application, but couldn’t find a way to listen for all SelectEvents fired from all components below one specific (which is the only one existing at the start, and then ...
1
vote
3answers
1k views

Zk how to reach included .zul page component by id?

I can't reach component by id in included .zul page. I have one main.zul with controller and I need to get component in included zul page on controller java class.But it returns null. I know inclu ...
1
vote
1answer
581 views

Zk included .zul page does not wotk with main controller

I used tabbox to create tabbed page. And each tab includes another zul page. I have 1 controller applyed to main page. If I add some action to component on included zul page, on controller class I ...
1
vote
2answers
181 views

how to Show the value in listbox where the value is from createNativeQuery Result on ZK?

iam getting very frustating problem when i have to show the value from result of createNativeQuery in Hibernate,my code is like this: public List<Rmerchant> ...
1
vote
1answer
89 views

Making vertically aligned controsl to all have the same length

The problem: A text box has a shorter length than a combobox. so if I draw them vertically it does not look pretty because they are not aligned on their right side edges. so let's make text box a ...
1
vote
3answers
69 views

The correct way to design this page without using Tables

Here is what I have. I played with DIV tags but still cannot figure out how to use them to design this page? one of the problems I am having is that I cannot correctly align the "Alias" label with ...
1
vote
1answer
335 views

how to access RESTful parameters from ZK GenericForwardComposer when using Spring MVC

i'm working on a project using zk and spring.Basically Spring manages object life-cycle of the objects.i've planned to use cute url.for that i used ZK MVC pattern and added Spring 3 MVC front ...
1
vote
1answer
524 views

Getting value from multiple select in LIstbox ZK

i want to ask about getting value from multiple select in Listbox, i have code in zul like this: <n:tr> <n:td> <label value="Privilege"/> ...
1
vote
2answers
341 views

How to Add Java Method Timer for Redirect in ZK

Hello fellow developer,i've getting problem to set the Timer method on ZK,default the method in my .zul page is: <timer id="timer" delay="1000" repeats="false" ...
1
vote
1answer
225 views

how do you scale the ZK-framework?

I'm currently working on a project where we migrate a web application, which uses the ZK-framework, to a eucalyptus cloud enviroment, but we wonder how we can make the framework scalable. Is it even ...
1
vote
2answers
286 views

Problem with a ZK Theme and IE Behavior (.htc) content-type

BASIC QUESTION: Is there a way to set the mime-type (content-type) of elements inside a jar that are pulled into a ZK theme? Extended background (already posted to ZK Forums with no response) We ...
1
vote
1answer
1k views

ZKSpring how to pass variables to the ZK zul from the Spring MVC controller?

i've beeing playing with zk a while and now comes serious things. I've successfull integrated spring and zk and the routing works as i use @controller annotation.so far so good Now i needed to ...
1
vote
2answers
259 views

How the MVC patterns works in ZKoss

i'm trying my hands around the zkoss library and it's kinda cool.I just happen to have learnt the MVC pattern through zend framework and it's like i'm kind of lost a bit. i have a couple of question ...
1
vote
2answers
155 views

AjaxBased Framework in .NET?

I'm developing a .NET based web project for public transport system in Norway. Prior to this, i've worked in Java Platform. I worked in AjaxBased framework like Zk and GWT in Java. I was wondering if ...
1
vote
1answer
269 views

zk ajax framework vs JBoss Seam

I am planning to learn a new Java framework for developing enterprise applications in a much easier way. I have heard of ZK ajax framework and Jboss Seam. It seems that ZK is mainly used for front ...
1
vote
1answer
138 views

Can I (relatively easily) test ZK interfaces in Watir?

How easily will Watir interact with a ZK interface? If "not at all" do you have any recommendations for automated testing of the web interface for me? Edit: Another way to put this would be can I ...
1
vote
1answer
207 views

how to create an auto suggest box in zkoss framework

Is there is any component for auto suggest similar to google suggest or can any one tell me how can i implement it...
1
vote
2answers
1k views

How to use ZK getFellow() method?

I am passing a bunch of tabs from a zul file to a java file like so: tabs.zul <tabs> <tab id="tab1" label="Tab1"> </tab> <tab id="tab2" label="Tab2"> </tab> ...
1
vote
1answer
123 views

Printing the pojo object values in the zul file using struts1

i integrated struts 1 with zk. i set the list of pojo values in the form of action execute method.how i can get this values in the zul file.Any idea please Thanks Usman
1
vote
1answer
4k views

ZK: How to create component and register databinding

I am using ZK framework to develop web applications. I am using databinding on components to set and get values. I can register databinding in source ZUL file and also in the method doAfterCompose in ...
1
vote
2answers
283 views

Relative File Path Problem

I am developing a portlet that is trying to read in a config file. I am developing it in an eclipse project. I currently have the config file placed inside my WEB-INF folder (which is in ...
1
vote
3answers
808 views

Hibernate with ZK

Does anyone have any experience on getting Hibernate working with ZK? Thanks Edit: Sorry to clarify what I am looking for: I am looking for anyone that has experience doing this, maybe they can ...
0
votes
1answer
14 views

Scrollable Listbox

I want see the items of list box on scroll, On ZK site I found only way to do it is set height in Pixels or set the rows property to specific number of rows. but I want to set it according to the ...
0
votes
1answer
21 views

ZK - Invoking ZScript function of an included sub page

Say, I have a zul page (page1.zul) like so: <zk> <textbox id="textbox1" ></textbox> <button label="Display" onClick="display()" ></button> <include ...
0
votes
1answer
14 views

Listcell removes Starting Spaces

When I create new Listcell(" a") I can only see output as "a" instead of " a" , does listcell removes the starting spaces from the label of listcell...if so how can I avoid it from doing ...
0
votes
0answers
19 views

Cannot assign Label to Listcell

I want to assign a string as label to Listcell which ends with these ascii characters 32 and 0 i.e space and null, but when I try to assign it it my Listcell I get an unterminated string ...
0
votes
1answer
43 views

iReport doesnt work (org/apache/commons/digester/Digester)

I'm using ZK framework 5.0.10 CE and my report is compiled with iReport 4.0.0; I use the next code in java: private void showCuadroComparativo(){ String jdbcSampleReportFile ...
0
votes
1answer
42 views

ZK error UI component

i have an error when deploying ZK in apache, java.lang.ClassCastException: neraca.neracaController cannot be cast to org.zkoss.zk.ui.util.Composer ...
0
votes
1answer
47 views

ZK java null pointer exception in controller

i got some error when deploying ZK Jan 16, 2012 5:00:59 PM org.apache.catalina.core.StandardWrapperValve invoke SEVERE: Servlet.service() for servlet [zkLoader] in context with path [/ZK509App6] ...

1 2 3