public String getToolTipText(MouseEvent e)
{
switch(realCol)
{
case 0:
tip = "Canonical Path:\n" + (String)(getTableModel().getDatas()[row][1]); // Display the Canonical Path. Do not use getValueAt!
break;
default:
tip = super.getToolTipText(e);
}
return tip;
}
Le tip s'affiche bien (encore heureux), mais sur une seul ligne !
Une idée?
merci
