Questions tagged [zul]

ZK User Interface Markup Language (ZUML). The UI declaration language for ZK framework.

is the XML based UI declaration language for ZK framework. Also known as ZK User Interface Markup Language (ZUML).

is an open-source Ajax framework for modern Java web applications. uses two ways to compose UI: XML-based approach and pure-Java approach.

relates to the XML based approach. Each XML element instructs ZK Loader to create a component. Each XML attribute describes what value to be assigned to the created component. Each XML processing instruction describes how to process the whole page, such as the page title.

139 questions
2
votes
1 answer

ZK menuitem image not showing

i have this code the image shows OK. //image dont show at all i have also try using single quotes double…
chiperortiz
  • 4,751
  • 9
  • 45
  • 79
2
votes
2 answers

how to bind part of a string in zk while using mvvm model

So, let us say we want to do some things like this:
Bhuvan
  • 4,028
  • 6
  • 42
  • 84
2
votes
1 answer

How to update progress-meter in zk when using mvvm

@GlobalCommand @Command @NotifyChange("*") public void makeProgress(){ int progress = getProgress(); if(progress == 100){ return; } progress++; Thread.sleep(100); // do some…
Bhuvan
  • 4,028
  • 6
  • 42
  • 84
2
votes
1 answer

zk6 what is difference between SelectorComposer and GenericForwardComposer

I am quite new to ZK framework. I am confuse with difference between SelectorComposer and GenericForwardComposer. Can somebody also define, when to use which Composer. Thanks
Maxton
  • 21
  • 6
2
votes
3 answers

zk framework : zul file, pure java or hybrid for better performance

zk framework is very flexible for web developers. But flexibility also brings some issues. I wonder which method is the best for performance (memory, time etc.) 1) .zul files, that consists scripts like : Auto-complete Combobox: …
asyard
  • 1,743
  • 5
  • 21
  • 43
2
votes
2 answers

I want to use the onSelect event of a ZK tree which is rendered through MVVM

Here is the zul file for reference
Jatin Sehgal
  • 956
  • 2
  • 17
  • 37
2
votes
1 answer

Issue with vlayout in ZK

I am new to ZK. I have craeted a zul file which includes the vlayout component. Here is the entire code:
Anto
  • 4,265
  • 14
  • 63
  • 113
2
votes
1 answer

Override "Processing" in ZK

OnClick of button I see this : I want to Override the Processing…
Aman J
  • 1,825
  • 1
  • 16
  • 30
1
vote
1 answer

Know if Client is Busy in ZK

Is there any way to know if at client side Busy box(Processing Label) is being shown (any method like isBusy()). Further can I do clearBusy() on an Event. Like click on an Button. Note:if you can answer first part pls do post it.
user1122857
1
vote
1 answer

How to tie zk components to objects or variables?

Say I have a zul page like so: I need to create an object which can be set to different zk components depending on conditions. The conditions could be events, for example: If a treerow of tree1 is…
sony
  • 1,557
  • 10
  • 36
  • 50
1
vote
0 answers

hflex is not working in zk version 9.0.1.2

Shivam
  • 161
  • 9
1
vote
1 answer

zk wire multiple component

I'm trying to wire multiple
Marco Consiglio
  • 133
  • 2
  • 7
1
vote
1 answer

ZK Framework wired Textbox return NullPointerException when I call a @Listen onClick

I'm new to ZK Framework and I'm excercising with a simple login form. I gather username/email and password when the user click the button. When I test the login button a NullPointerException occurs. I can't figure out what is wrong with the code.…
Marco Consiglio
  • 133
  • 2
  • 7
1
vote
1 answer

Group the row in the grid zk framework

I am trying to group the rows in a grid with the following code.Model holds the list of pojo classes.When I am trying to add the group under rows.Rows are getting populated but the group label is not showing.If I place the group label inside the…
sree
  • 868
  • 2
  • 12
  • 35
1
vote
3 answers

SAP HYBRIS [Y] : The import org.zkoss cannot be resolved

I am creating a widget in backoffice on HYBRIS. After the generation of the extension trainingbackoffice I added it in the localxtension.xml file as following :
CHARAFI Saad
  • 1,340
  • 3
  • 16
  • 36
1
2
3
9 10