tabs with no content

(4 posts) (3 voices)

Tags:

No tags yet.

  1. john, Member

    trying to build a report that is just tabs that load other reports. But if there is no data in any of the tabs then none of them show. if there is data in at least one then they all show. I can't figure out what i am doing wrong.

    this produces a blank page
    select 'dbr.tab', 'myDBR report tab', 'sp_DBR_linked_report'; select 'dbr.tab', 'myDBR report tab', 'sp_DBR_linked_report'; select 'dbr.tab', 'myDBR report tab', 'sp_DBR_linked_report';

    this produces 4 tabs
    select 'dbr.tab', 'myDBR report tab', 'sp_DBR_linked_report'; select 'dbr.tab', 'myDBR report tab', 'sp_DBR_linked_report'; select 'dbr.tab', 'myDBR report tab', 'sp_DBR_linked_report'; select 'dbr.tab', 'myDBR report tab'; select 'pei' as 'ie'; select 'dbr.tab.close';

  2. lefgoumas, Blocked

    I had this problem too.
    Try something like this:

    select 'dbr.tab', 'myDBR report tab', 'sp_DBR_linked_report';
    select 'dbr.tab', 'myDBR report tab', 'sp_DBR_linked_report';
    select 'dbr.tab', 'myDBR report tab', 'sp_DBR_linked_report';

    select 'dbr.text','';

  3. myDBR Team, Key Master

    Yes,
    you need to have at least one result set. For minimal you can use:

    select 'dbr.html', '';

    --
    myDBR Team

  4. john, Member

    Thanks so much, i tried the result set in advance of the select 'dbr.tab' (witch didn't work) but hadn't tried putting it after.


Reply

You must log in to post.