# wicket-extjs-integration **Repository Path**: mirrors_onehippo/wicket-extjs-integration ## Basic Information - **Project Name**: wicket-extjs-integration - **Description**: Smart Integration of Wicket with ExtJS with event handling and a focus on making the Java-API as close to the JS-API as possible. - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 1 - **Created**: 2023-02-27 - **Last Updated**: 2026-01-26 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README Smart Integration with event handling and a focus on making the Java-API as close to the JS-API as possible. ### Code-Example ### Note that you can simply call win.hide(); in the onClick of the button. ``` final ExtWindow win = new ExtWindow("hello-win"); win.setTitle(new Model("Hello Dialog")); win.setWidth(500); win.setHeight(300); win.addButton(new ExtButton(new Model("Close")) { @Override protected void onClick(AjaxRequestTarget target) { win.hide(); } }); add(win); ``` ### The same with only Ext ### ``` win = new Ext.Window({ applyTo:'hello-win', width:500, height:300, buttons: [{ text: 'Close', handler: function(){ win.hide(); } }] }); ``` ## Licenses ## Please see [the Licensing page on the WIKI](../../wiki/Licensing) for details on licensing.