Table and format property value

In vaadin 6 Table#formatPropertyValue returns property.toString(), and we can change formatting for any object property in table according to other object properties.
But in vaadin 7 I see that Table#formatPropertyValue uses converters and if converter not specified it returns value.toString().

Variants:

  • value.toString() - I don’t know property of which object used.
  • converter.convertToPresentation - doesn’t allow us to use specific format of property for some objects.

May be, return property.toString() as it is in vaadin 6 ?


http://dev.vaadin.com/ticket/11108