Category / Section
How to Show All Column Values in View Underlying Data Window by Default Through Embedded Application?
Published:
By default, the widget's view underlying data window shows only the column values configured in that widget. However, as explained in this article, customize it to show all column values by default in the dashboard embedded mode
.
To do this, set the dashboardSettings.viewDataSettings.showAllColumns (Boolean) member API value as true as mentioned in the following code block.
var dashboard = BoldBI.create({
dashboardSettings:{
viewDataSettings:{
showAllColumns:true
}
}
});
dashboard.loadDashboard();
Once
you set the showAllColumns member API value to true programmatically,
all column values will be displayed whenever you open the View Underlying Data window across any widgets in that dashboard. Hence, enabling the Select All checkbox manually in the View Underlying Data Select Column dialog will not be necessary.
Note: This setting reflects only on the designer mode (preview) and in published dashboards.
For more information about this member API, refer to this link.