Handling form-based file upload with GWT and the Apache Jakarta Commons FileUpload library

Uploading files to a filesystem, a remote server, a database, etc, is a frequent need in web applications. These files are often multipart data (that is of varying types such as XML, HTML, plain text, binary … ). With GWT, a good solution to handle this need is the use of the Apache Jakarta Commons … Read more

[GWT] Table with pagination and one sortable column

I just added a very basic GWT project to my github account to display a table with pagination and one sortable column. The code is mostly based on the official GWT tutorial : http://code.google.com/intl/en/webtoolkit/doc/latest/DevGuideUiCellTable.html I basically just added the SimplePage element to handle pagination : SimplePager pager = new SimplePager(); pager.setDisplay(table); Source : https://github.com/longbeach/MyFirstCellTable Demo … Read more