Hi, I'm currently using CDE version 5.4.0.1 on the Pentaho BI Server release 5.4.0.0.128 CE to create a number of dashboards. I've got a series of multi select components that I've set up to filter my data set and I'd like to enable a tooltip when hovering over this component. I've added some text to the tooltip property under the advanced properties tab. It is my understanding that I now have to enable the tooltip functionality for that particular component's css element. I have inserted the following code into the css file but the tooltip is still not visible on the dashboard. Can anyone advise as to where I am going wrong?
Many Thanks
Richard
Many Thanks
Richard
Code:
.multiSelector {overflow: hidden;
width:175px;
font-size: 10px;
-moz-border-radius: 0 0 0 0;
-webkit-border-radius: 0 0 0 0;
border-radius: 0 0 0 0;
color: #585858;}
.multiSelector:hover data-tooltip {visibility: visible;
}