Questions tagged [zk-grid]

Question regarding zk grid component

grid is a zk component

A grid contains components that are aligned in rows like tables. Inside a grid you place columns, rows, and headers.

Wiki: https://www.zkoss.org/wiki/ZK_Component_Reference/Data/Grid

Java Docs: https://www.zkoss.org/javadoc/latest/zk/org/zkoss/zul/Grid.html

36 questions
2
votes
1 answer

How to add many components in ZK in specific position

I'm working in a ZK application and I need to add 's components based on user input. The zul is like this:
Alvaro Pedraza
  • 1,176
  • 6
  • 20
  • 44
2
votes
1 answer

NotifyChange part of a model in ZK

In my zul I have a Grid and I am using two named templates for it. I have used a model from my VM in my zul which I am using in the Grid template. Now I am modifying the model in a thread in the VM and upon the completion of thread, I am…
Harry
  • 321
  • 4
  • 13
2
votes
1 answer

zk - is it possible to add binding to each record in model?

authorPublisherEtcInclude.insertBefore(self, authorBox);
Dracontis
  • 4,184
  • 8
  • 35
  • 50
2
votes
1 answer

Web pivot table componet showing text in pivot table data area

I have found these great pivot table components on the web nicolaskruchten - pivottable ZKOSS - pivottable RJackson - pivottable My problem (or question) lies in the fact that pivot tables inherently "pivot" data around a numeric data-set; meaning…
Hightower
  • 968
  • 4
  • 24
  • 58
1
vote
1 answer

How to add Emoji plugin to CKEditor used in ZK framework?

I have a requirement where my ZK wysiwyg toolbar needs to provide an option of adding an Emoji. I checked and found that there is a Emoji plugin already shipped with CKEditor but I am unable to enable it on ZK editor. I already tried to add below…
www.hybriscx.com
  • 1,129
  • 4
  • 22
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
1 answer

Background changes color when hovering

So I have a grid in Zkoss with a certain amount of columns. One the first row I place two labels which fill the first two columns (as expected). I've written their style so that they don't have change color when you hover the mouse over them however…
DMH
  • 182
  • 1
  • 2
  • 17
1
vote
3 answers

ZK listbox auto width for last row

I want my last listcell has auto width to full the list size. but don't want the listcell too small or swallowed when the list size is not enough. header 1
Se Song
  • 1,613
  • 2
  • 19
  • 32
1
vote
1 answer

How can I get this value in Java Class?

I have a form built with zk. In this part : I call method viewGraph() and i want that…
pippo15
  • 113
  • 1
  • 4
  • 17
1
vote
1 answer

How to change grid default status in a ZK theme?

I have a page built with ZK. In this page there is a button that start a search. If there are some data them appear in a grid view. Every data are built in this way: v Date1 (dd/mm/yyyy) - item - item - item v Date2 (dd/mm/yyyy) - item …
pippo15
  • 113
  • 1
  • 4
  • 17
1
vote
2 answers

Refresh data in MVVM page after modal close (written in MVC)

I have a MVVM dialog which lists the users from the DB. There is an add button on click, it opens a modal (which is in MVC). On addition of a user, the modal closes. But the user added is not populated in the parent dialog which called the add user…
Karthik
  • 929
  • 2
  • 12
  • 24
1
vote
1 answer

variable in iframe with zk

i have a for each in my zk page, and in the each i am creating a column, and in my column i need add a iframe, and to each frame i need pass as variable the label of the column. I have something like:
user2768380
  • 151
  • 1
  • 5
  • 21
1
vote
1 answer

ZK session variable with a menu

I have an application in ZK providers in my database, and i have my DAO to return all the names of my database. And i have this view in ZK:
user2768380
  • 151
  • 1
  • 5
  • 21
1
vote
1 answer

pass variable between pages in zk

I have this code in zk: @Command public void showModal(@BindingParam("languageContributionStatus") UserStatus mnoList) { //create a window programmatically and use it as a modal dialog. final HashMap map = new HashMap
user2768380
  • 151
  • 1
  • 5
  • 21
1
vote
1 answer

Load page in a tab with ZK

I have this code in ZK, with a menu to navigate:
user2768380
  • 151
  • 1
  • 5
  • 21
1
2 3