Re: FineUploader implementation?

2015-01-02 Thread Ilya Obshadko
I have an improved implementation for BlueImp jQuery-File-Upload, included in https://github.com/xfyre/tapestry5-xtensions. FineUploader is a commercial product, so it's not easy to distribute solutions that use it. On Sat, Jan 3, 2015 at 1:13 AM, Geoff Callender < geoff.callender.jumpst...@gmail

Re: Grid data source, BeanModel and nested properties

2015-01-02 Thread Jonathan Barker
Ilya, Our strategy is to use a class specifically to hold the query results, so the sort criteria are simple properties. The Criteria query and Projection are supplied separately to our GridDataSource. The Projection maps any child properties onto aliases (useful for the sorting), and an option

FineUploader implementation?

2015-01-02 Thread Geoff Callender
Does anyone have a Tapestry implementation that handles uploads with FineUploader 5? Taha's implementation ( http://tawus.wordpress.com/2011/06/25/ajax-upload-for-tapestry/ ) looks great, but it's not suited to version 5.0's blobs and its RESTful leanings. Geoff --

Re: Grid data source, BeanModel and nested properties

2015-01-02 Thread Chris Poulsen
The automatic creation of bean models can only do so much - I always find that the automatic model creation is great for getting started, but at some point it is always necessary to provide explicit bean models. The pattern we end up with is something like this: model = beanModelSource.createDisp

Grid data source, BeanModel and nested properties

2015-01-02 Thread Ilya Obshadko
I'm trying to implement a Grid data source optimized for database retrievals (with paging support). Basically it's derived from HibernateGridDataSource from Tapestry distribution, and provides support for complex Criteria queries: https://gist.github.com/xfyre/ecb36a9173aed6a37f14 However, there i