Processing...

Suggested case list:

Using timer to refresh a grid

383guest172.69.33.12125nk0uiMay 7, 2020 7:23:47 AMlink

user model to move item to another listbox

120guest162.158.193.148d0n3krApr 2, 2020 5:28:28 AMlink

Disabled list item row passed to VM-1981

296fatih123160.83.36.13025nk0uiFeb 13, 2018 4:25:44 PMlink

Disabled list item row passed to VM-1981

295fatih123160.83.36.13025nk0uiFeb 13, 2018 4:25:16 PMlink

Disabled list item row passed to VM-1981

294fatih123160.83.36.13225nk0uiFeb 13, 2018 3:30:44 PMlink

grid sample with ListModel/RowRenderer

816guest80.82.2.1312vah9ajFeb 21, 2017 11:42:21 AMlink

grid sample with ListModel/RowRenderer

809guest175.98.113.1622vah9ajJan 26, 2017 9:19:33 AMlink

grid sample with ListModel/RowRenderer

196guest79.185.142.402vah9ajApr 26, 2014 10:53:57 PMlink

grid sample with ListModel/RowRenderer

195guest79.185.142.402vah9ajApr 26, 2014 10:53:54 PMlink

grid sample with ListModel/RowRenderer

194guest79.185.142.402vah9ajApr 26, 2014 10:53:51 PMlink

grid sample with ListModel/RowRenderer

193guest79.185.142.402vah9ajApr 26, 2014 10:53:48 PMlink

grid sample with ListModel/RowRenderer

192guest79.185.142.402vah9ajApr 26, 2014 10:53:44 PMlink

grid sample with ListModel/RowRenderer

191guest79.185.142.402vah9ajApr 26, 2014 10:53:40 PMlink

Hierarchy table without using ZK PE/EE

1aaknai151.28.135.2131s871daJul 29, 2013 11:02:46 PMlink

grid sample with ListModel/RowRenderer

128aaknai151.28.135.2132vah9ajJul 29, 2013 7:20:00 PMlink

user model to move item to another listbox

1TonyQ114.25.109.94d0n3krApr 21, 2012 10:43:27 AMlink

Using timer to refresh a grid

1TonyQ220.133.44.3725nk0uiFeb 17, 2012 3:17:34 AMlink

Fire a event from child iframe

1TonyQ220.133.44.372eupjotFeb 3, 2012 5:04:52 AMlink

Textbox input restriction sample

1TonyQ72.21.245.2431b3nlr0Dec 20, 2011 10:09:10 AMlink

Test web core taglib in ZUL

1TonyQ198.203.175.175ofqkemDec 17, 2011 3:36:08 AMlink

Latest 10 Fiddles :

Another new ZK fiddle

13guest172.68.219.133fpb5tjOct 7, 2024 3:52:31 PMlink

Another new ZK fiddle

12guest172.68.219.133fpb5tjOct 7, 2024 3:42:23 PMlink

Another new ZK fiddle

11guest172.68.219.132fpb5tjOct 7, 2024 3:39:06 PMlink

Another new ZK fiddle

10guest172.68.219.132fpb5tjOct 7, 2024 3:37:58 PMlink

Another new ZK fiddle

9guest172.68.219.133fpb5tjOct 7, 2024 3:28:50 PMlink

Another new ZK fiddle

1guest172.68.219.132127hkhfOct 7, 2024 3:28:32 PMlink

Another new ZK fiddle

8guest172.68.219.132fpb5tjOct 7, 2024 3:28:26 PMlink

Another new ZK fiddle

7guest172.68.219.133fpb5tjOct 7, 2024 3:23:06 PMlink

Another new ZK fiddle

1guest172.71.155.503ducqtmOct 7, 2024 3:19:43 PMlink

Another new ZK fiddle

2Ditutala172.68.219.1333damkgcOct 7, 2024 3:19:30 PMlink

iBilhestes

169guest172.68.219.131ssdm0jOct 7, 2024 2:13:15 PMlink

resources

index.zulzul<zk> <style> .banner { background-color: #333; color: white; padding: 10px 20px; text-align: center; } .menu-item { margin: 15px 0; } .movie-type { text-align: center; margin: 20px; } .movie-type image { width: 100px; height: 100px; border-radius: 10px; } .footer { background-color: #333; color: white; padding: 10px; text-align: center; } .search-bar { margin: 20px; text-align: center; } .search-bar .z-textbox { width: 80%; padding: 10px; font-size: 16px; } </style> <borderlayout> <north height="100px" sclass="banner"> <label style="font-size: 50px">iBilhetes</label> </north> <west width="260px" minsize="300" splittable="true" collapsible="true"> <grid> <columns> <column width="100px"></column> <column></column> </columns> <rows> <row class="menu-item"> <a href="venda.zul" height="32px">Venda de Bilhetes</a> </row> <row class="menu-item"> <a href="consulta.zul" height="32px">Consultar Bilhetes</a> </row> <row class="menu-item"> <a href="relatorios.zul" height="32px">Consultar Relatórios</a> </row> </rows> </grid> </west> <center> <vbox> <div class="search-bar"> <textbox placeholder="Pesquisar filmes..."/> </div> <div class="movie-type"> <label style="font-size: 24px; font-weight: bold;">Tipos de Filmes</label> <hbox> <vbox> <image src="test2.jpg"/> <label>Ação</label> </vbox> <vbox> <image src="test2.jpg"/> <label>Comédia</label> </vbox> <vbox> <image src="test2.jpg"/> <label>Drama</label> </vbox> </hbox> </div> </vbox> </center> <south height="100px" sclass="footer"> <vbox> iBilhete ${desktop.webApp.version} <a href="http://codelaice.wordpress.com" style="color: white;">http://codelaice.wordpress.com</a> </vbox> </south> </borderlayout> </zk> TestComposer.javajavaimport org.zkoss.zk.ui.*; import org.zkoss.zk.ui.event.*; import org.zkoss.zk.ui.util.*; import org.zkoss.zk.ui.ext.*; import org.zkoss.zk.au.*; import org.zkoss.zk.au.out.*; import org.zkoss.zul.*; public class TestComposer extends GenericForwardComposer{ public void doAfterCompose(Component comp) throws Exception { super.doAfterCompose(comp); } public void onClick$btn(Event e) throws InterruptedException{ Messagebox.show("Hi btn"); } } BilheteController.javajavaimport org.zkoss.zk.ui.Component; import org.zkoss.zk.ui.select.SelectorComposer; import org.zkoss.zk.ui.select.annotation.Listen; import org.zkoss.zk.ui.select.annotation.Wire; import org.zkoss.zk.ui.util.Clients; import org.zkoss.zul.*; import java.sql.Date; import java.util.ArrayList; import java.util.List; public class BilheteController extends SelectorComposer<Component> { private static final long serialVersionUID = 1L; private static List<Bilhete> bilhetes = new ArrayList<>(); @Wire private Textbox tituloBox, descricaoBox, localBox; @Wire private Datebox dataBox; @Wire private Intbox quantBox; @Wire private Decimalbox precoBox; @Wire private Grid consultaGrid, relatorioGrid; @Listen("onClick = #criarBtn") public void criarBilhete() { Bilhete bilhete = new Bilhete(); bilhete.setTitulo(tituloBox.getValue()); bilhete.setDescricao(descricaoBox.getValue()); bilhete.setData(new Date(dataBox.getValue().getTime())); bilhete.setLocal(localBox.getValue()); bilhete.setQuantidade(quantBox.getValue()); bilhete.setPreco(precoBox.getValue().doubleValue()); // Converte BigDecimal para double bilhetes.add(bilhete); Messagebox.show("Bilhete criado com sucesso!\n" + bilhete.toString(), "Informação", Messagebox.OK, Messagebox.INFORMATION); atualizarGrids(); Clients.evalJavaScript("window.location.href='consulta.zul';"); } private void atualizarGrids() { if (consultaGrid != null) { consultaGrid.getRows().getChildren().clear(); for (Bilhete bilhete : bilhetes) { Row row = new Row(); row.appendChild(new Label(bilhete.getTitulo())); row.appendChild(new Label(bilhete.getDescricao())); row.appendChild(new Label(bilhete.getData().toString())); row.appendChild(new Label(bilhete.getLocal())); row.appendChild(new Label(String.valueOf(bilhete.getQuantidade()))); row.appendChild(new Label(String.valueOf(bilhete.getPreco()))); consultaGrid.getRows().appendChild(row); } } if (relatorioGrid != null) { relatorioGrid.getRows().getChildren().clear(); for (Bilhete bilhete : bilhetes) { Row row = new Row(); row.appendChild(new Label(bilhete.getTitulo())); row.appendChild(new Label(bilhete.getDescricao())); row.appendChild(new Label(bilhete.getData().toString())); row.appendChild(new Label(bilhete.getLocal())); row.appendChild(new Label(String.valueOf(bilhete.getQuantidade()))); row.appendChild(new Label(String.valueOf(bilhete.getPreco()))); relatorioGrid.getRows().appendChild(row); } } } public static class Bilhete { private String titulo; private String descricao; private Date data; private String local; private int quantidade; private double preco; // Getters e Setters public String getTitulo() { return titulo; } public void setTitulo(String titulo) { this.titulo = titulo; } public String getDescricao() { return descricao; } public void setDescricao(String descricao) { this.descricao = descricao; } public Date getData() { return data; } public void setData(Date data) { this.data = data; } public String getLocal() { return local; } public void setLocal(String local) { this.local = local; } public int getQuantidade() { return quantidade; } public void setQuantidade(int quantidade) { this.quantidade = quantidade; } public double getPreco() { return preco; } public void setPreco(double preco) { this.preco = preco; } @Override public String toString() { return "Título: " + titulo + "\nDescrição: " + descricao + "\nData: " + data + "\nLocal: " + local + "\nQuantidade: " + quantidade + "\nPreço: " + preco; } } }venda.zulzul<zk xmlns:n="native"> <window title="Registrar novo bilhete" border="normal" width="400px" apply="pkg$.BilheteController"> <vbox> <hbox> <a href="index.zul"> <button label="Voltar"/> </a> <label value="Registrar novo bilhete" style="padding-left: 10px;"/> </hbox> <grid> <columns> <column label="Campo"/> <column label="Valor"/> </columns> <rows> <row> <label value="Título"/> <textbox id="tituloBox"/> </row> <row> <label value="Descrição"/> <textbox id="descricaoBox"/> </row> <row> <label value="Data do Evento"/> <datebox id="dataBox"/> </row> <row> <label value="Local"/> <textbox id="localBox"/> </row> <row> <label value="Quantidade de Bilhete"/> <intbox id="quantBox"/> </row> <row> <label value="Preço"/> <decimalbox id="precoBox"/> </row> </rows> </grid> <hbox> <button label="Cancelar" onClick="self.parent.detach()"/> <button id="criarBtn" label="Criar Bilhete"/> </hbox> </vbox> </window> </zk>test.jpgunknownhttps://th.bing.com/th/id/OIP.7uKj7YOn2fPVb2PtNi8ZdQHaDg?rs=1&pid=ImgDetMaintest2.jpgunknownhttps://th.bing.com/th/id/OIP.ks63voSvhus4Kqt75suG4wHaEo?rs=1&pid=ImgDetMainconsulta.zulzul<zk xmlns:n="native"> <window title="Consulta de Bilhetes" border="normal" width="600px" apply="pkg$.BilheteController"> <vbox> <a href="index.zul"> <button label="Voltar"/> </a> <label value="Consulta de Bilhetes" style="font-size: 20px; font-weight: bold;"/> <grid id="consultaGrid"> <columns> <column label="Título"/> <column label="Descrição"/> <column label="Data"/> <column label="Local"/> <column label="Quantidade"/> <column label="Preço"/> </columns> <rows> <!-- Os dados dos bilhetes serão preenchidos pelo controlador --> </rows> </grid> </vbox> </window> </zk>relatorios.zulzul<zk xmlns:n="native"> <window title="Relatório de Bilhetes" border="normal" width="600px" apply="pkg$.BilheteController"> <vbox> <a href="index.zul"> <button label="Voltar"/> </a> <label value="Relatório de Bilhetes" style="font-size: 20px; font-weight: bold;"/> <grid id="relatorioGrid"> <columns> <column label="Título"/> <column label="Descrição"/> <column label="Data"/> <column label="Local"/> <column label="Quantidade"/> <column label="Preço"/> </columns> <rows> <!-- Os dados dos bilhetes serão preenchidos pelo controlador --> </rows> </grid> </vbox> </window> </zk>