Skip to content
This repository has been archived by the owner on Dec 17, 2021. It is now read-only.

onehippo/wicket-extjs-integration

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

92 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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<String>("Hello Dialog"));
win.setWidth(500);
win.setHeight(300);
				
win.addButton(new ExtButton(new Model<String>("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 for details on licensing.

About

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.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 92.7%
  • CSS 5.8%
  • Java 1.4%
  • HTML 0.1%