*/
DateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm", Locale.US);
format.setLenient(false);
DataModel dataModel = getDataModel();
if (dataModel instanceof ExtendedDataModel) {
DataVisitor visitor = new DataVisitor() {
//TODO Is this fine? or should we stack rowKeys and not use dataModel later on. I'don't know business rules of extendedDataModel, just used it once to do pagination with underlying EntityQuery from Seam
public DataVisitResult process(FacesContext context, Object rowKey, Object argument) {
return null;
}