All public logs
From Documentation
Combined display of all available logs of Documentation. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
(newest | oldest) View (newer 50 | older 50) (20 | 50 | 100 | 250 | 500)- 11:26, 25 March 2023 Hawk talk contribs deleted page Documentation:Books/ZK Developer's Guide 2nd Ed (content was: "{{saved_book}} == ZK Developer's Guide == :ZK_Developer's_Guide_2nd_Ed :ZK_Developer's_Guide_2nd_Ed/Getting_Started :ZK_Developer's_Guide_2nd_Ed/Getting_Started/Hello world and beyond :ZK_Developer's_Guide_2nd_Ed/Getting_Started/Hello world and beyond/Hello World! :ZK_Developer's_Guide_2nd_Ed/Getting_Started/Hello world and beyond/Say Hello in an Ajax Manner :ZK_Developer's_Guide_2nd_Ed/Getting_Started/Hello world and beyond/It is Java and Runs at the Ser...")
- 11:26, 25 March 2023 Hawk talk contribs deleted page ZK Developer's Guide 2nd Ed/Getting Started/Hello world and beyond/MVC: Separating Code from the User Interface (content was: "{{ZKDevelopersGuide2ndEdPageHeader}} Embedding Java code in a ZUML page is straightforward and easy to read. However, in a production environment, it is usually better to separate the code from the user interfaces. In additions, the compiled Java code runs much faster than the embedded code which is interpreted at the run time. To separate code from UI, we could implement a Java class (aka., the controller) that implements <javadoc type="interface">org.zkoss.zk.ui.util.Compos...")
- 11:26, 25 March 2023 Hawk talk contribs deleted page ZK Developer's Guide 2nd Ed/Getting Started/Hello world and beyond/Access with Data Binder (content was: "{{ZKDevelopersGuide2ndEdPageHeader}} EL expressions are convenient but it is limited to display the read-only data. If we allow the end users to modify data, we could use the data binder to handling the display and modification for us. We need to provide the model (POJO) with proper getter and setter methods (such as <code>getName()</code> and <code>setName(String)</code>). First, we declare a initial class <javadoc>org.zkoss.zkplus.databind.AnnotateDataBinderInit</javadoc>....")
- 11:26, 25 March 2023 Hawk talk contribs deleted page ZK Developer's Guide 2nd Ed/Getting Started/Hello world and beyond/Express Data with a Variable Resolver and EL Expressions (content was: "{{ZKDevelopersGuide2ndEdPageHeader}} In a ZUML page, we could locate data with a variable resolver (<javadoc type="interface">org.zkoss.xel.VariableResolver</javadoc>), and then express it with EL expressions. For example, assumes we have a class called <code>foo.User</code>, and we can retrieve a list of users by its static method called <code>getAll()</code>. Then, we can impl...")
- 11:26, 25 March 2023 Hawk talk contribs deleted page ZK Developer's Guide 2nd Ed/Getting Started/Hello world and beyond/MVC: Autowiring (content was: "{{ZKDevelopersGuide2ndEdPageHeader}} Implementing and registering event listeners is a bit tedious. Thus, ZK provides a feature called autowiring. By extending from <javadoc>org.zkoss.zk.ui.util.GenericForwardComposer</javadoc>, ZK will looks for the members if their names match the identifiers of components. For example, we could rewrite <code>foo.PropertyRetriever</code> by utilizing the autowriing as follows. <syntax lang="java"> package foo; import org.zkoss.zk.ui.Compone...")
- 11:25, 25 March 2023 Hawk talk contribs deleted page ZK Developer's Guide 2nd Ed/Getting Started/Hello world and beyond/A component is a POJO (content was: "{{ZKDevelopersGuide2ndEdPageHeader}} A component is a POJO. You could instantiate and manipulate directly. For example, we could generate the result by instantiating a component to represent it, and then append it to another component (an instance of vlayout). <syntax lang="xml" > <window title="Property Retrieval" borde...", and the only contributor was "Tmillsclare" (talk))
- 11:25, 25 March 2023 Hawk talk contribs deleted page ZK Developer's Guide 2nd Ed/Getting Started/Hello world and beyond/Identify a component (content was: "{{ZKDevelopersGuide2ndEdPageHeader}} A component is a POJO, so you can reference it any way you like. However, ZK provides a convenient way to identify and to retrieve a component: identifier. For example, the above code can be simplified if we named the textbox as <code>input</code> by assigning <code>id</code> to it, as follows. <syntax lang="xml" > <window title="Property Retrieval" border="normal"> Enter a property name: <textbox id="input"/> <button label="Retrie...")
- 11:25, 25 March 2023 Hawk talk contribs deleted page ZK Developer's Guide 2nd Ed/Getting Started/Hello world and beyond/It is Java and Runs at the Server (content was: "{{ZKDevelopersGuide2ndEdPageHeader}} The embedded Java code runs at the server so it could access any resource available at the server. For example, <syntax lang="xml" > <window title="Property Retrieval" border="normal"> Enter a property name: <textbox/> <button label="Retrieve" onClick="alert(System.getProperty(self.getPreviousSibling().getValue()))"/> </window> </syntax> where <code>self</code> is a built-in variable that references the component receiving the eve...")
- 11:25, 25 March 2023 Hawk talk contribs deleted page ZK Developer's Guide 2nd Ed/Getting Started/Hello world and beyond/Say Hello in an Ajax Manner (content was: "{{ZKDevelopersGuide2ndEdPageHeader}} Let us put some interactivity into it. <syntax lang="xml" > <button label="Say Hello" onClick='Messagebox.show("Hello World!")'/> </syntax> Then, when you click the button, you'll see the following: Image:DgGettingStartedHello2.png The <code>onClick</code> attribute is a special attribute used to add an event listener to the component such that it is invoked when an end user clicks the component. The attribute value could be any le...")
- 11:24, 25 March 2023 Hawk talk contribs deleted page ZK Developer's Guide 2nd Ed/Getting Started/Hello world and beyond/Hello World! (content was: "{{ZKDevelopersGuide2ndEdPageHeader}} After ZK is installed on your favorite Web server<ref>For more information, please refer to ZK Installation Guide.</ref>, writing applications is straightforward. Just create a ZUML file, say hello.zul<ref>The other way to try examples is to use [http://www.zkoss.org/zksandbox/userguide ZK Sandbox] to run them.</ref>, under one of the Web application's directories just as you would do for an HTML file. <syntax lang="xml" > <window tit...")
- 11:24, 25 March 2023 Hawk talk contribs deleted page ZK Developer's Guide 2nd Ed/Getting Started/Hello world and beyond (content was: "{{ZKDevelopersGuide2ndEdPageHeader}} {{ZKDevelopersGuide2ndEdHeadingToc}} {{ZKDevelopersGuide2ndEdPageFooter}}", and the only contributor was "Tmillsclare" (talk))
- 11:24, 25 March 2023 Hawk talk contribs deleted page ZK Developer's Guide 2nd Ed/Getting Started (content was: "{{ZKDevelopersGuide2ndEdPageHeader}} {{ZKDevelopersGuide2ndEdHeadingToc}} {{ZKDevelopersGuide2ndEdPageFooter}}", and the only contributor was "Tmillsclare" (talk))
- 11:24, 25 March 2023 Hawk talk contribs deleted page ZK Developer's Guide 2nd Ed (too old)
- 11:02, 13 March 2023 Matthieu talk contribs created page File:Google-api-key-3.png
- 11:02, 13 March 2023 Matthieu talk contribs uploaded File:Google-api-key-3.png
- 11:02, 13 March 2023 Matthieu talk contribs created page ZK Component Reference/Diagrams and Reports/Gmaps/Getting Started (Created page with "= Getting started with ZK Gmaps = __TOC__ The zkgmapsz dependency lets you easily embed a [http://maps.google.com/ Google Maps] control into your ZK page. In this section, w...")
- 10:58, 13 March 2023 Matthieu talk contribs created page File:Google-api-key-2.png
- 10:58, 13 March 2023 Matthieu talk contribs uploaded File:Google-api-key-2.png
- 10:56, 13 March 2023 Matthieu talk contribs created page File:Google-api-key-1.png
- 10:56, 13 March 2023 Matthieu talk contribs uploaded File:Google-api-key-1.png
- 01:19, 10 March 2023 Hawk talk contribs uploaded a new version of File:HierachicalClassLoader.jpg
- 12:34, 9 March 2023 Matthieu talk contribs created page ZK Component Reference/Diagrams and Reports/Gmaps/Use Cases (Created page with "{{ZKComponentReferencePageHeader}} = Gmaps use cases = __TOC__ [http://maps.google.com/ Google Maps] is quite useful for those applications that need to locate an address o...")
- 15:09, 7 March 2023 Hawk talk contribs created page File:HierachicalClassLoader.jpg
- 15:09, 7 March 2023 Hawk talk contribs uploaded File:HierachicalClassLoader.jpg
- 10:43, 6 March 2023 Hawk talk contribs created page File:WeekOfyear.jpg
- 10:43, 6 March 2023 Hawk talk contribs uploaded File:WeekOfyear.jpg
- 10:40, 6 March 2023 Hawk talk contribs created page File:OnWeekClick.gif
- 10:40, 6 March 2023 Hawk talk contribs uploaded File:OnWeekClick.gif
- 09:10, 6 March 2023 Hawk talk contribs created page File:Onitemtooltip.jpg
- 09:10, 6 March 2023 Hawk talk contribs uploaded File:Onitemtooltip.jpg
- 10:40, 2 March 2023 Hawk talk contribs created page ZK Developer's Reference/Packaging Applications (Created page with "{{ZKDevelopersReferencePageHeader}} __TOC__ {{ZKDevelopersReferencePageFooter}}")
- 04:02, 2 March 2023 Hawk talk contribs deleted page Documentation:Books/ZK ZUML Reference (redundant)
- 04:00, 2 March 2023 Hawk talk contribs deleted page ZK Forge (content was: "<CollectionIndex>Documentation:Books/ZK_Forge</CollectionIndex> <br /> <br /> ---- If you have any feedback regarding this book, please leave it here. <comment>http://books.zkoss.org/wiki/ZK_Forge</comment>", and the only contributor was "Bookbot" (talk))
- 04:00, 2 March 2023 Hawk talk contribs deleted page Documentation:Books/ZK Forge (content was: "{{saved_book}} == ZK Forge == :ZK Forge :ZK Forge/SwiftTab :ZK Forge/SwiftTab/Download :ZK Forge/SwiftTab/Tutorial :ZK Forge/SwiftTab/Reference Books/ZK Forge")
- 04:00, 2 March 2023 Hawk talk contribs deleted page ZK Forge/SwiftTab (content was: "{{ZKForgePageHeader}} [INTRODUCTION] {{ZKForgeHeadingToc}} {{ZKForgePageFooter}}", and the only contributor was "Tmillsclare" (talk))
- 02:19, 21 February 2023 Hawk talk contribs created page File:Sizable.png
- 02:19, 21 February 2023 Hawk talk contribs uploaded File:Sizable.png
- 01:27, 21 February 2023 Hawk talk contribs deleted page File:ZKComRef Grid Example.png (Deleted old revision 20230221012721!ZKComRef_Grid_Example.png)
- 01:27, 21 February 2023 Hawk talk contribs reverted File:ZKComRef Grid Example.png to an old version (Reverted to version as of 04:16, 18 November 2010 (UTC))
- 01:24, 21 February 2023 Hawk talk contribs uploaded a new version of File:ZKComRef Grid Example.png
- 07:05, 7 February 2023 Hawk talk contribs deleted page File:PlotClickEventAfter.png
- 07:05, 7 February 2023 Hawk talk contribs deleted page File:PlotClickEventBefore.png
- 07:04, 7 February 2023 Hawk talk contribs created page File:ShiftPoint.gif
- 07:04, 7 February 2023 Hawk talk contribs uploaded File:ShiftPoint.gif
- 08:42, 13 January 2023 Hawk talk contribs created page ZK Installation Guide/Quick Start/Create and Run Your First ZK Application with Maven Archetype (Created page with "{{ZKInstallationGuidePageHeader}} __TOC__ {{ZKInstallationGuidePageFooter}}")
- 09:07, 10 January 2023 Hawk talk contribs deleted page Template:ClosableSlidable (rename)
- 09:07, 10 January 2023 Hawk talk contribs created page Template:LayoutCommonAttributes (Created page with "== Caption == {{ZK EE}} {{versionSince| 6.5.0}} A layout region may have a caption, which is specified by declaring a child component <code> <caption></code>. <syntaxhig...")
- 09:02, 10 January 2023 Hawk talk contribs created page Template:ClosableSlidable (Created page with "== Closable == {{versionSince| 8.5.2}} Default: <code>true</code> Whether users can open or close the region. Require <code>collapsible="true"</code>. Notice you need to clic...")
- 08:52, 10 January 2023 Hawk talk contribs created page File:Closable.gif
- 08:52, 10 January 2023 Hawk talk contribs uploaded File:Closable.gif