If Vaadin 7 table Header tooltip html code possible ?
please send saml=ple code
There’s no easy way to do it, as Table headers don’t support components and they don’t have a java API like setDescription
. It should be doable with a custom GWT Table extension, see for example GitHub - tepi/FilteringTable: An add-on for Vaadin. Extends the Vaadin Table component to provide optional filtering components below the table header.. Another possibility would be some kind of JavaScript hack (maybe with a PopupView), but that would require quite some time to put an example together.
header tooltip like
Yes, that’s the kind I was referring to.
if possible own css vaadin table headrer tooltip ?
any idea own css about table header tooltip
I am not fully sure what you are asking. But Table component does not have tooltip / description API for column headers in the first place. Thus naturally you cannot style them with CSS.