docs/versioned_docs/version-2.43.0/how-to/print-multitabs.md
In this guide, we will implement printing data from multiple tabs in ToolJet. This will be useful when printing an invoice or a report from your ToolJet application. For example, a ToolJet app that has a set of tabs for each invoice, and you want to print all the tabs in one go.
</div> <div style={{paddingTop:'24px', paddingBottom:'24px'}}>On the ToolJet homepage, click on the ellipses on the Create new app button. Choose an app with a set of tabs for each record. Each tab will have a set of fields to display. For this guide, we will be using the Lead Management System app.
In the example below, we have the Tabs component and each tab has a set of fields to display the record details.
Tabs: Each tab represents different type of lead record. For this app, we have 4 tabs. Each tab has an id starting from 0 to 4.
Button: The Create Lead button is the deafult button. For this guide, we will also add another button named Download PDF, that will print the data from all the tabs. The button will have two events, the details for which we will share later in this guide.
lead_management_system in Table name parameter.List rows in the Operations parameter.Once the data is successfully loaded on the tabs and the app is working as expected, we can move to the next step.
</div> <div style={{paddingTop:'24px', paddingBottom:'24px'}}>To print data from multiple tabs, we will create few JavaScript queries. Using event handlers, we will run these JavaScript queries in a sequence to print data from all the tabs.
Before we start creating the JavaScript queries, we need to add a few events to the Download PDF button:
| <div style={{ width:"100px"}}> Event </div> | <div style={{ width:"100px"}}> Action </div> | <div style={{ width:"100px"}}> Description </div> |
|---|---|---|
| On click | Set variable | Set a variable with key lastSelectedTab and value to {{components.tabs1.currentTab}}. This will store the id of the currently selected tab in the variable. |
| On click | Run query | Select the query named viewTabs to run when the button is clicked. |
Note: We will create the viewTabs query later in this guide, so you will need to add the event to the button after you've created the query.
<div style={{textAlign: 'center'}}> </div> </div> <div style={{paddingTop:'24px', paddingBottom:'24px'}}>The viewTabs query is a JavaScript query that will run a loop to print data from all the tabs. The query will set a variable tabIndex that will store the id of the tab to print data from. The query for this app will loop and increment the tabsIndex variable by 1, using the setVariable action, till the value is less than 4.
if ((variables?.tabIndex ?? undefined) == undefined) {
await actions.setVariable("tabIndex", "0"); // set tabIndex to 0 if it is not set
} else if (parseInt(variables.tabIndex) < 4){
await actions.setVariable("tabIndex", (parseInt(variables.tabIndex) + 1).toString()); // increment tabIndex by 1
}
This query will have 3 events:
Query Success from the dropdown.Control component as the Action for the event.{{parseInt(variables.tabIndex) < 4}}. This will run only if the output of the given code is true, i.e. if the tabIndex is less than 4.Set current tab.{{variables.tabIndex}} in the Id parameter. This sets the current tab to the tab with id stored in the tabIndex variable, i.e. it sets the current tab to the tab whose id got recently stored in the tabIndex variable via the viewTabs query.Query Success event.Run Query as the Action for the event.{{parseInt(variables.tabIndex) < 4}}. This event will run only if the condition given in the code is true.getTabsHTML.100 milliseconds to this event handler.Note: We will create the getTabsHTML query later in this guide, so you will need to add the event to the button after you've created the query.
<div style={{textAlign: 'center'}}> </div>Query Success event.Run Query as the Action for the event.{{parseInt(variables.tabIndex) === 4}}. This action runs only when the tabIndex is equal to 4, i.e. the last iteration of the loop and we will print the data from all the tabs in this iteration.printPDF.Note: We will create the printPDF query later in this guide, so you will need to add the event to the button after you've created the query.
<div style={{textAlign: 'center'}}> </div>Now that we have created the viewTabs query, we can go to the Download PDF button and add the viewTabs query to the On click event handler.
The getTabsHTML is a JavaScript query that will get the HTML of the current tab and store it in a variable. The query will have a variable tabsHtml that will store the HTML of all the tabs in the form of an array.
actions.setVariable( // set tabsHtml variable
"tabsHtml",
[...(variables?.tabsHtml ?? [])].concat([ // add html of the current tab to the tabsHtml variable
((variables?.tabIndex ?? -1) > 0
? `<div style="top: ${ // add a div with height of 100vh to the html of the current tab
variables?.tabIndex ?? -1
}00vh; position: absolute;">` // this will help to print data from all the tabs in one go
: "") +
document.getElementsByClassName("widget-" + components.tabs1.id)[0] // get the html of the current tab
.innerHTML +
"</div>", // add the html of the current tab to the tabsHtml variable
])
);
This query will have 1 event:
Query Success event.Run Query.Now that we have created the getTabsHTML query, we can go to the viewTabs query and in the Event 2 of that query, add the getTabsHTML query to the event handler.
</div> <div style={{paddingTop:'24px', paddingBottom:'24px'}}>The printPDF query is a JavaScript query that generates a printable document from the HTML content stored in the tabsHtml variable. This query will open a new window and write the HTML content of all the tabs. This will allow the user to download a PDF document that includes the formatted content of all the tabs.
var printContents = variables.tabsHtml; // get the html of all the tabs from the tabsHtml variable
var winPrint = window.open("", "", "width=900,height=650"); // Open a New Window for Printing
var styles = document.querySelectorAll('link, style');
var stylesHtml = "";
for (var i = 0; i < styles.length; i++) {
stylesHtml += styles[i].outerHTML;
} // gather styles from the current page
stylesHtml += '<style>@page { size: landscape; }</style>'; // add landscape orientation to the page
winPrint.document.write(
"<html><head>" +
stylesHtml +
"</head><body>"
); // add styles to the page
for (var j = 0; j < printContents.length; j++) {
winPrint.document.write(printContents[j]);
} // add html of all the tabs to the page
winPrint.document.write("</body></html>"); // Document Finalization and Printing
winPrint.document.close();
winPrint.focus();
winPrint.print();
winPrint.close();
This query will have 3 events:
Query Success from the dropdown.Unset variable as the Action for the event.tabsIndex as the Key. This will unset the tabsIndex variable after the printPDF query is successfully executed.Query Success event.Unset variable as the Action for the event.tabsHtml as the Key. This will unset the tabsHtml variable after the printPDF query is successfully executed.Query Success event.Control component as the Action for the event.tabs1 for the Component parameter.Set current tab as the Action.{{variables.lastSelectedTab}}. This will set the current tab to the tab that was selected before the Download PDF button was clicked.Now that we have created the printPDF query, we can go to the viewTabs query, and in the Event 3 of that query, add the printPDF query to the Query Success event handler.
Finally, we can test the app by clicking on the Download PDF button. This will redirect us to the new tab of the browser, and download a PDF document with the data from all the tabs.
</div> </div>