Mouse-over

(10 posts) (2 voices)

Tags:

No tags yet.

  1. JimTer, Member

    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?

  2. myDBR Team, Key Master

    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

  3. JimTer, Member

    Thank you.

    Do i have to replace the "td" or "title" with a name of mij crosstable?

  4. myDBR Team, Key Master

    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

  5. JimTer, Member

    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;

  6. myDBR Team, Key Master

    And what is the build you are using?

    Btw. No need to use 'distinct' in yout query.
    --
    myDBR Team

  7. JimTer, Member

    Thank you for the btw.
    I don't understand your question.

  8. myDBR Team, Key Master

    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

  9. JimTer, Member

    Ah.

    myDBR 3.9.4 (build 2081)

  10. JimTer, Member

    Thats it!
    Just updated MYdbr to myDBR 3.9.4 (build 2172)
    and now it works.


Reply

You must log in to post.