We have a BeanItemContainer, which we show as a Vaadin table that works very well. The only problem is that one of the properties of the bean is the url, and we want it to be a link.
Adding "a href = ..." to the url in the setURL () function works, but
- it will not hit me like very elegant code.
- other callers now have to remove tags from it after using the get method.
Adding a click listener to the table also works, but
- it can open a window instead of a bookmark
- this can be prevented by a popup blocker
Is there a way to control the process of Vaadin converting the values ββof the bean properties to table cells?
source share