Buttons in Tabs - Align Horizontally - dbr.keepwithnext

(4 posts) (2 voices)

Tags:

No tags yet.

  1. jdluth, Member

    Good day! I have three tabs each with two buttons that I want to have displayed next to each other. When I use the dbr.keepwithnext function I'm only seeing an extra row added between the buttons and they stay lined up vertically.

    Here's a sample of the code:

    SELECT 'dbr.tab.style','width:900px'
    SELECT 'dbr.tab', 'CLAIMS';
    SELECT 'dbr.tab', 'PROVIDERS';
    SELECT 'dbr.tab', 'MEMBERS';

    BEGIN
    SELECT 'dbr.keepwithnext';
    SELECT 'dbr.button', 'Add Claim';
    SELECT 'dbr.report', 'sp_DBR_Tracking_Claims_Add','newdynamicdiv[]';
    SELECT 'dummy result set for the button';

    SELECT 'dbr.button', 'Download Summary';
    SELECT 'dbr.report', 'sp_DBR_Tracking_Claims_View','append=&export=xlsx';
    SELECT 'dummy result set for the button';
    END

  2. myDBR Team, Key Master

    We'll take a look why this is happening. In the meanwhile, you can use:

    SELECT 'dbr.button', 'Download Summary', 'button', 'kwn';

    for the second button.

    --
    myDBR Team

  3. jdluth, Member

    Thank you! That's working perfectly.

  4. myDBR Team, Key Master

    The original issue has been fixed in the newest build.

    --
    myDBR Team


Reply

You must log in to post.