In a cross-table the result of a report shows alt-texts when i put my mouse om a value.
But i don't want that.
How can i let those alt-texts disappear?
Mouse-over
(10 posts) (2 voices)-
-
Purpose of the tooltip is to give user quick way of seeing which cell is shown if the table is so big that not all columns are visible. If you do not wish to have them, you can remove them using JavaScript:select 'dbr.purehtml','$("td").attr("title", "");' 'onload';
--
myDBR Team -
Thank you.
Do i have to replace the "td" or "title" with a name of mij crosstable?
-
select 'dbr.purehtml','$("td").attr("title", "");' 'onload';
That was an incorrect advise as the tooltips are generated on the fly to crosstable objects. The recent build allows one to add class "no_tooltip" to the result and this will signal myDBR not to create the tooltips automatically.
To use it use the dbr.resultclass-command:
select 'dbr.resultclass', 'no_tooltip';
--
myDBR Team -
I'm sorry: de new command doesn't work either.
This is my code and i still get mouseovers/alt-texts:select 'dbr.crosstab',2;
select 'dbr.resultclass','no_tooltip';
select 'dbr.sum',3;
select 'dbr.hidecolumns',3;
select distinct
Melding
,quarter(datestart) as Kwartaal
,Count(workflowitemid) as Aantal
,inStadsdeel as stadsdeel
,inStartDate as Startdate
,inEndDate as Enddate
from tmp_data
group by Melding,Kwartaal; -
And what is the build you are using?
Btw. No need to use 'distinct' in yout query.
--
myDBR Team -
Thank you for the btw.
I don't understand your question. -
If you go to myDNR main screen and click the "About / Update" link or click the myDBR text in upper left corner, you will be shown the information about your myDBR installation: the installed version and build.
Could you tell which version and build you are using?
--
myDBR Team -
Ah.
myDBR 3.9.4 (build 2081)
-
Thats it!
Just updated MYdbr to myDBR 3.9.4 (build 2172)
and now it works.
Reply
You must log in to post.