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