This method will initialize the Dashboard Viewer options and returns the object for rendering the dashboard.
Example
var dashboard = BoldBI.create({
serverUrl: "http://localhost:51777/bi/site/site1",
dashboardId: "755e99c7-f858-4058-958b-67577b283309",
embedContainerId: "dashboard_container",// This should be the container id where you want to embed the dashboard
embedType: BoldBI.EmbedType.Component,
environment: BoldBI.Environment.Enterprise,
height: "800px",
width: "1200px",
authorizationServer: {
url: "http://example.come/authorize/server"
},
expirationTime: "100000",
});
This method will render the dashboard based on the dashboard options provided while calling the create method.
Example
var dashboard = BoldBI.create(options);
dashboard.loadDashboard();
This method will load the widget of current dashboard.
Example
var dashboard = BoldBI.create(options);
dashboard.loadDashboardWidget("Sales by country");
This method will render the dashboard designer based on the dashboard options provided while calling the create method.
Example
var dashboard = BoldBI.create(options);
dashboard.loadDesigner();
This method will render the data source based on the data source options provided while calling the create method.
Example
var dashboard = BoldBI.create(options);
dashboard.loadDatasource();
This method will render the pinboard based on the provided pinboard name.
Example
var dashboard = BoldBI.create(options);
dashboard.loadPinboard();
This method will return the object of the rendered dashboard using the container id assigned to the dashboard options.
Example
<div id="container"></div>
<script>
var dashboard = BoldBI.create({
embedContainerId: "container",
});
dashboard.loadDashboard();
dashboard.getInstance("container");
</script>
This method will destroy the dashboard based on the dashboard object provided while calling the create method.
Example
var instance = BoldBI.getInstance("container"); //container -> embed container id
instance.destroy();
This method will update the filter parameters of current dashboard by the following cases.
Example
var instance = BoldBI.getInstance("container"); //container -> embed container id
instance.updateFilters("Continent=Asia,Africa,Europe");
Cases | Syntax | Example |
---|---|---|
URL Parameter |
{column_name}={value1},{value2},{value3} |
|
Dashboard Parameter |
{parameter_name}={parameter_value} |
|
Combination Of URL Parameter and Dashboard Parameter |
{column_name}={value1},{value2},{value3}&&{parameter_name}={parameter_value} |
|
Combination Of Dashboard Parameter and URL Parameter |
{parameter_name}={parameter_value}&{column_name}={value1},{value2},{value3} |
|
This method will refresh the current dashboard.
Example
var instance = BoldBI.getInstance("container"); //container -> embed container id
instance.refreshDashboard();
This method will add the widgets into the existing pinboard.
Example
var instance = BoldBI.getInstance("container"); //container -> embed container id
instance.addWidgetToPinboard(dashboardId, widgetId, widgetName);
This method will update the current data source page from the outside page.
Example
var instance = BoldBI.getInstance("container"); //container -> embed container id
instance.updateDatasource();
This method will resize the current dashboard.
Example
var instance = BoldBI.getInstance("container"); //container -> embed container id
instance.resizeDashboard();
This method will hide the current dashboard waiting pop-up.
Example
var instance = BoldBI.getInstance("container"); //container -> embed container id
instance.hidePopup();
This method will help you to get the detail of the widget in a clientFnc
method with arguments.
Example
var instance = BoldBI.getInstance("container"); //container -> embed container id
instance.getWidgetData(widgetName, clientFnc, dashboardId); // widgetName ->Define the name of the widget to be Refresh , clientFnc -> It acts as a method, in this method only details of the widget are passed in an argument. , dashboardId -> Define the unique id of the dashboard if it is present within the multitab dashboard.
This method will refresh the particular widgets in the current dashboard.
Example
var instance = BoldBI.getInstance("container"); //container -> embed container id
instance.refreshWidgetData(widgetNames, hideLoader, dashboardId); // widgetnames ->Define the name of the widget to be Refresh , hideLoader -> Define whether to show or hide loading indicator while processing , dashboardId -> Define the unique id of the dashboard if it is present within the multitab dashboard.
This method will used to get instance of that specific widget using Id. To get the widget details from specific dashboard, please refer this REST API.
Example
var dashboard = BoldBI.create(options);
var instance = BoldBI.getInstance("container"); // container -> embed container id
var widgetId = "2583540a-f970-41a1-9fc8-31c0581e7aa3"; // For getting widget ID, refer mentioned REST API in description.
var widgetInstance = instance.getWidgetInstance(widgetId);
This method is used to set the filter parameters to the widget instance in the following cases.
To know about widget ID of the specific widget, please refer this link.
To filter the widgets at initial rendering
, you need to set filter parameters with widget instance like below.
Example for filtering without column name
var instance = BoldBI.getInstance("container"); // container -> embed container id
var widgetId = "201ce4b3-f2f9-4a3b-98e7-05b5ba01f2ca";
var filtersValue = ["Average", "Good"];
var widgetInstance = instance.getWidgetInstance(widgetId).setFilterParameters(filtersValue);
Example for filtering with one column name
var instance = BoldBI.getInstance("container"); // container -> embed container id
var widgetId = "201ce4b3-f2f9-4a3b-98e7-05b5ba01f2ca";
var filtersValue = ["Feedback=Average,Good"];
var widgetInstance = instance.getWidgetInstance(widgetId).setFilterParameters(filtersValue);
Example for filtering with more than one column name
var instance = BoldBI.getInstance("container"); // container -> embed container id
var widgetId = "32ed09f7-49ef-4468-9c56-ccc376dbcaaa";
var filtersValue = ["Product=Carnarvon Tigers","Company=Hanari Carnes" ];
var widgetInstance = instance.getWidgetInstance(widgetId).setFilterParameters(filtersValue);
This method is used to update the dashboard with applied filter values in the On-Demand case. This would be used for any type of widget filtering cases.
Example for updating the widget filtered values in dashboard
var instance = BoldBI.getInstance("container");
var widgetId1 = "201ce4b3-f2f9-4a3b-98e7-05b5ba01f2ca";
var filtersValue1 = ["Feedback=Average,Good"]; //single column with filter values
instance.getWidgetInstance(widgetId1).setFilterParameters(filtersValue1);
var widgetId2= "32ed09f7-49ef-4468-9c56-ccc376dbcaaa";
var filtersValue2 = ["Product=Carnarvon Tigers","Company=Hanari Carnes"]; //multiple columns with filter values
instance.getWidgetInstance(widgetId2).setFilterParameters(filtersValue2);
instance.updateWidgetFilters("container"); //container -> embed container id
Note: Apply widget filters on both initial rendering and on-demand in the dashboard using a Web application. To know more details, please refer to here.
This method will export the dashboard as Pdf.
Example
var instance = BoldBI.getInstance("container"); //container -> embed container
var exportInformation ={'dashboardId':"",'fileName':"",'pageSize':"",'pageOrientation':"",'showAppliedFilters':};
instance.exportDashboardAsPdf(exportInformation);
Parameter | Description |
dashboardId |
Define the unique id of the dashboard if it is present within the multi-tab dashboard, and it is mandatory for a multi-tab dashboard and an empty string for other cases. |
fileName |
Define the name of the file to be exported, and it is an optional parameter of string type. |
pageSize |
Define the size of the page ('A3', 'A4', 'A5', 'Letter') and it is an optional parameter of string type. |
pageOrientation |
Define the page orientation ('Landscape,' 'Portrait'), and it is an optional parameter of string type. |
showAppliedFilters |
Define whether you need to export the dashboard with or without a filter, and it is an optional parameter of Boolean type. |
This method will export dashboard as image.
Example
var instance = BoldBI.getInstance("container"); //container -> embed container
var exportInformation ={'dashboardId':"",'fileName':"",'exportImageFormat':"",'resolutionDpi':"",'showAppliedFilters':};
instance.exportDashboardAsImage(exportInformation);
Parameter | Description |
dashboardId |
Define the unique id of the dashboard if it is present within the multi-tab dashboard, and it is mandatory for a multi-tab dashboard and an empty string for other cases. |
fileName |
Define the name of the file to be exported, and it is an optional parameter of string type. |
exportImageFormat |
Define the format of the image to be exported('jpg','png' and 'bmp') and its an optional parameter of string type. |
resolutionDpi |
Define the resolution of the image (Integer value above 96) and its an optional parameter of integer type. |
showAppliedFilters |
Define whether you need to export the dashboard with or without a filter, and it is an optional parameter of Boolean type. |
This method will export dashboard as excel.
Example
var instance = BoldBI.getInstance("container"); //container -> embed container
var exportInformation ={'dashboardId':"",'fileName':"",'fileType':""};
instance.exportDashboardAsExcel(exportInformation);
Parameter | Description |
dashboardId |
Define the unique id of the dashboard if it is present within the multi-tab dashboard, and it is mandatory for a multi-tab dashboard and an empty string for other cases. |
fileName |
Define the name of the file to be exported, and it is an optional parameter of string type. |
fileType |
Define the type of file to be exported ('xlsx','xls') and its an optional parameter of string type. |
This method will export widget as PDF.
Example
var instance = BoldBI.getInstance("container"); //container -> embed container
var exportInformation ={'dashboardId':"",'widgetName':"",'fileName':"",'pageSize':"",'pageOrientation':"",'showAppliedFilters':};
instance.exportWidgetAsPdf(exportInformation);
Parameter | Description |
dashboardId |
Define the unique id of the dashboard if it is present within the multitab dashboard and the widget id if it is present within the pinboard. It is mandatory for the multitab dashboard, pinboard, and empty string for other cases. |
widgetName |
Define the name of the widget to be exported and its a mandatory parameter of string type. |
fileName |
Define the name of the file to be exported, and it is an optional parameter of string type. |
pageSize |
Define the size of the page ('A3', 'A4', 'A5', 'Letter') and it is an optional parameter of string type. |
pageOrientation |
Define the page orientation ('Landscape,' 'Portrait'), and it is an optional parameter of string type. |
showAppliedFilters |
Define whether you need to export the dashboard with or without a filter, and it is an optional parameter of Boolean type. |
This method will export widget as image.
Example
var instance = BoldBI.getInstance("container"); //container -> embed container
var exportInformation ={'dashboardId':"",'widgetName':"",'fileName':"",'exportImageFormat':"",'resolutionDpi':"",'showAppliedFilters':};
instance.exportWidgetAsImage(exportInformation);
Parameter | Description |
dashboardId |
Define the unique id of the dashboard if it is present within the multitab dashboard and the widget id if it is present within the pinboard. It is mandatory for the multitab dashboard, pinboard, and empty string for other cases. |
widgetName |
Define the name of the widget to be exported and its a mandatory parameter of string type. |
fileName |
Define the name of the file to be exported, and it is an optional parameter of string type. |
exportImageFormat |
Define the format of the image to be exported('jpg','png' and 'bmp') and its an optional parameter of string type. |
resolutionDpi |
Define the resolution of the image (Integer value above 96) and its an optional parameter of integer type. |
showAppliedFilters |
Define whether you need to export the dashboard with or without a filter, and it is an optional parameter of Boolean type. |
This method will export widget as excel.
Example
var instance = BoldBI.getInstance("container"); //container -> embed container
var exportInformation ={'dashboardId':"",'widgetName':"",'fileName':"",'fileType':""};
instance.exportWidgetAsExcel(exportInformation);
Parameter | Description |
dashboardId |
Define the unique id of the dashboard if it is present within the multitab dashboard and the widget id if it is present within the pinboard. It is mandatory for the multitab dashboard, pinboard, and empty string for other cases. |
widgetName |
Define the name of the widget to be exported and its a mandatory parameter of string type. |
fileName |
Define the name of the file to be exported, and it is an optional parameter of string type. |
fileType |
Define the type of file to be exported ('xlsx','xls') and its an optional parameter of string type. |
This method will export widget as Csv.
Example
var instance = BoldBI.getInstance("container"); //container -> embed container
var exportInformation ={'dashboardId':"",'widgetName':"",'fileName':""};
instance.exportWidgetAsCsv(exportInformation);
Parameter | Description |
dashboardId |
Define the unique id of the dashboard if it is present within the multitab dashboard and the widget id if it is present within the pinboard. It is mandatory for the multitab dashboard, pinboard, and empty string for other cases. |
widgetName |
Define the name of the widget to be exported and it is a mandatory parameter of string type. |
fileName |
Define the name of the file to be exported, and it is an optional parameter of string type. |
This method will be used Create an new category to server.
Example
var instance = BoldBI.getInstance("container"); //container -> embed container id
instance.createDashboardCategory(categoryName, categoryDescription, callBackFnc, containerId);
function callBackFnc(args)
{
// The parameter args contains the status whether category is added or not.
}
Parameter | Type | Description |
---|---|---|
categoryName |
string |
Need to set the name to create a new category in the server. |
categoryDescription |
string |
Need to set the description of new category. |
callBackFnc |
string |
This method will act as call back function ,it will return the status of whether category is added or not. |
containerId |
string |
Need to set embed container id. |
NOTE: Customize the
createDashboardCategory()
in the dashboard designer using web application. To know more details, please refer to here.
This method will be used to get the dashboard categories from the server.
Example
var instance = BoldBI.getInstance("container"); //container -> embed container id
instance.getDashboardCategories(callBackFnc, containerId);
function callBackFnc(args)
{
// The args parameter contains the list of categories available in the server as an array, which contains CategoryId and CategoryName
}
Parameter | Type | Description |
---|---|---|
callBackFnc |
string |
This method will act as call back function ,it will get the category list from the server. |
containerId |
string |
Need to set the embed container id. |
NOTE: Customize the
getDashboardCategories()
in the dashboard designer using web application. To know more details, please refer to here.
This method is used to publish the dashboard to the server with the dashboard name into the desired category and desired dashboard name.
Parameter | Type | Description | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
publishModel |
object |
This object contains the following Parameters:
|
||||||||||||
containerId |
string |
Set the embed container id. |
Example for Save the new dashboard
var instance = BoldBI.getInstance("container"); //container -> embed container id
// For Save the New Dashboard case, Dashboard Id value is not needed
var publishModel = {category: "Sales",categoryId: "e6ed2f36-7205-423e-81e0-38a8ceb8e68c",description: "Published Using API",isPublic: false,name: "Publish API_01"}
instance.saveDashboard(publishModel, containerId);
Example for Save the existing dashboard
var instance = BoldBI.getInstance("container"); //container -> embed container id
// For Save the Existing Dashboard case, Dashboard Id value is needed
var publishModel = {category: "Sales",categoryId: "e6ed2f36-7205-423e-81e0-38a8ceb8e68c",description: "Published Using API",id: '451e17e5-e59f-4090-84a2-cf5537876e59',isPublic: false,name: "Publish API_01"}
instance.saveDashboard(publishModel, containerId);
Example for SaveAs the existing dashboard
var instance = BoldBI.getInstance("container"); //container -> embed container id
// For SaveAs the existing Dashboard case, Dashboard Id value is not needed
var publishModel = {category: "Sales",categoryId: "e6ed2f36-7205-423e-81e0-38a8ceb8e68c",description: "Published Using API",isPublic: false,name: "Publish API_01"}
instance.saveDashboard(publishModel, containerId);
NOTE: Customize the
saveDashboard()
in the dashboard designer using web application. To know more details, please refer to here.
This method will remove the styles applied from the dashboard, which instance created using the embed container Id.
Example
var instance = BoldBI.getInstance("container"); //container -> embed container id
instance.destroyStyles();
This method will apply or refresh the styles of the dashboard, which instance created using the embed container Id.
Example
var instance = BoldBI.getInstance("container"); //container -> embed container id
instance.addStyles();
This method will get the specific widget and dashboard comments from the Bold BI Server.
Example for getting normal dashboard comments
var instance = BoldBI.getInstance("container"); //container -> embed container id
var args = {'dashboardId': "f3968817-f3e0-4747-9d7a-d89a6098bb12"};
var commentType= "dashboard";
instance.getComments(commentType, args, "callBackFnc");
function callBackFnc(args) {
// It will return the updated comments in the dashboard as arguments.
// Write a code block to perform an operation while getting the specific dashboard comment.
}
Example for getting multitab dashboard comments
var instance = BoldBI.getInstance("container"); //container -> embed container id
var args = {'dashboardId': "f3968817-f3e0-4747-9d7a-d89a6098bb12", multitabDashboardId: "59c94463-0da5-4cf5-a5a5-cbc3ed901ad6"};
var commentType= "dashboard";
instance.getComments(commentType, args, "callBackFnc");
function callBackFnc(args) {
// It will return the updated comments in the dashboard as arguments.
// Write a code block to perform an operation while getting the specific dashboard comment from the multitab dashboard.
}
Example for getting widget comments from normal dashboard
var instance = BoldBI.getInstance("container"); //container -> embed container id
var args = {'widgetId': "7d118d8c-cee9-479e-befc-d2a46abc9aa5", 'dashboardId': "f3968817-f3e0-4747-9d7a-d89a6098bb12"};
var commentType= "widget";
instance.getComments(commentType, args, "callBackFnc");
function callBackFnc(args) {
// It will return the updated comments in the widget as arguments.
// Write a code block to perform an operation while getting the specific widget comment from the normal dashboard.
}
Example for getting widget comments from multitab dashboard
var instance = BoldBI.getInstance("container"); //container -> embed container id
var args = {'widgetId': "7d118d8c-cee9-479e-befc-d2a46abc9aa5", 'dashboardId': "f3968817-f3e0-4747-9d7a-d89a6098bb12", multitabDashboardId: "59c94463-0da5-4cf5-a5a5-cbc3ed901ad6"};
var commentType= "widget";
instance.getComments(commentType, args, "callBackFnc");
function callBackFnc(args) {
// It will return the updated comments in the widget as arguments.
// Write a code block to perform an operation while getting the specific widget comment from the multitab dashboard.
}
Parameter | Type | Description | ||||||
---|---|---|---|---|---|---|---|---|
commentType |
string |
Defines the type of the comment whether it is dashboard or widget . |
||||||
args |
object |
The object contains the following parameters.
|
||||||
callBackFnc |
string |
Denotes the callback method name that must be defined. It will return the updated comments in the dashboard as arguments. |
This method will add the comment to the respective dashboard.
Example for adding comment in normal dashboard
var instance = BoldBI.getInstance("container"); //container -> embed container id
var addComment = {content: "Adding dashboard comment", dashboardId: "f3968817-f3e0-4747-9d7a-d89a6098bb12"};
instance.addDashboardComment(addComment, "callBackFnc");
function callBackFnc(args) {
// It will return the updated comments in the dashboard as arguments.
// Write a code block to perform an operation while adding the comment in the normal dashboard.
}
Example for adding comment in multitab dashboard
var instance = BoldBI.getInstance("container"); //container -> embed container id
var addComment = {content: "Adding multitab dashboard comment", dashboardId: "f3968817-f3e0-4747-9d7a-d89a6098bb12", multitabDashboardId: "59c94463-0da5-4cf5-a5a5-cbc3ed901ad6"};
instance.addDashboardComment(addComment, "callBackFnc");
function callBackFnc(args) {
// It will return the updated comments in the dashboard as arguments.
// Write a code block to perform an operation while adding the comment in the multitab dashboard.
}
Example for replying comment in normal dashboard
var instance = BoldBI.getInstance("container"); //container -> embed container id
var addComment = {content: "Replying dashboard comment", dashboardId: "f3968817-f3e0-4747-9d7a-d89a6098bb12", parentCommentId: "1"};
instance.addDashboardComment(addComment, "callBackFnc");
function callBackFnc(args) {
// It will return the updated comments in the dashboard as arguments.
// Write a code block to perform an operation while replying the comment in the normal dashboard.
}
Example for replying comment in multitab dashboard
var instance = BoldBI.getInstance("container"); //container -> embed container id
var addComment = {content: "Replying multitab dashboard comment", dashboardId: "f3968817-f3e0-4747-9d7a-d89a6098bb12", parentCommentId: "1", multitabDashboardId: "59c94463-0da5-4cf5-a5a5-cbc3ed901ad6"};
instance.addDashboardComment(addComment, "callBackFnc");
function callBackFnc(args) {
// It will return the updated comments in the dashboard as arguments.
// Write a code block to perform an operation while replying the comment in the multitab dashboard.
}
Parameter | Type | Description | ||||||||
---|---|---|---|---|---|---|---|---|---|---|
addComment |
object |
The object contains the following parameters.
|
||||||||
callBackFnc |
string |
Denotes the callback method name that must be defined. It will return the updated comments in the dashboard as arguments. |
This method will edit the dashboard comment of the respective dashboard.
Example for editing comment in normal dashboard
var instance = BoldBI.getInstance("container"); //container -> embed container id
var editComment = {content: "Edited dashboard comment", commentId: "2", dashboardId: "f3968817-f3e0-4747-9d7a-d89a6098bb12"};
instance.editDashboardComment(editComment, "callBackFnc");
function callBackFnc(args) {
// It will return the updated comments in the dashboard as arguments.
// Write a code block to perform an operation while editing the comment in the normal dashboard.
}
Example for editing comment in multitab dashboard
var instance = BoldBI.getInstance("container"); //container -> embed container id
var editComment = {content: "Edited multitab dashboard comment", commentId: "2", dashboardId: "f3968817-f3e0-4747-9d7a-d89a6098bb12", multitabDashboardId: "59c94463-0da5-4cf5-a5a5-cbc3ed901ad6"};
instance.editDashboardComment(editComment, "callBackFnc");
function callBackFnc(args) {
// It will return the updated comments in the dashboard as arguments.
// Write a code block to perform an operation while editing the comment in the multitab dashboard.
}
Parameter | Type | Description | ||||||||
---|---|---|---|---|---|---|---|---|---|---|
editComment |
object |
The object contains the following parameters.
|
||||||||
callBackFnc |
string |
Denotes the callback method name that must be defined. It will return the updated comments in the dashboard as arguments. |
This method will delete the dashboard comment of the respective dashboard.
Example for deleting comment in normal dashboard
var instance = BoldBI.getInstance("container"); //container -> embed container id
var deleteComment = {commentId: "3", dashboardId: "f3968817-f3e0-4747-9d7a-d89a6098bb12"};
instance.deleteDashboardComment(deleteComment, "callBackFnc");
function callBackFnc(args) {
// It will return the updated comments in the dashboard as arguments.
// Write a code block to perform an operation while deleting the comment in the normal dashboard.
}
Example for deleting comment in multitab dashboard
var instance = BoldBI.getInstance("container"); //container -> embed container id
var deleteComment = {commentId: "3", dashboardId: "f3968817-f3e0-4747-9d7a-d89a6098bb12", multitabDashboardId: "59c94463-0da5-4cf5-a5a5-cbc3ed901ad6"};
instance.deleteDashboardComment(deleteComment, "callBackFnc");
function callBackFnc(args) {
// It will return the updated comments in the dashboard as arguments.
// Write a code block to perform an operation while deleting the comment in the multitab dashboard.
}
Parameter | Type | Description | ||||||
---|---|---|---|---|---|---|---|---|
deleteComment |
object |
The object contains the following parameters.
|
||||||
callBackFnc |
Denotes the callback method name that must be defined. It will return the updated comments in the dashboard as arguments. |
This method will add the widget comment to the respective widget of the dashboard.
Example for adding widget comment in normal dashboard
var instance = BoldBI.getInstance("container"); //container -> embed container id
var addComment = {content: "Adding widget comment in normal dashboard", widgetId: "7d118d8c-cee9-479e-befc-d2a46abc9aa5", dashboardId: "f3968817-f3e0-4747-9d7a-d89a6098bb12"};
instance.addWidgetComment(addComment, "callBackFnc");
function callBackFnc(args) {
// It will return the updated comments in the widget as arguments.
// Write a code block to perform an operation while adding the widget comment in the normal dashboard.
}
Example for adding widget comment in multitab dashboard
var instance = BoldBI.getInstance("container"); //container -> embed container id
var addComment = {content: "Adding widget comment in multitab dashboard", widgetId: "7d118d8c-cee9-479e-befc-d2a46abc9aa5", dashboardId: "f3968817-f3e0-4747-9d7a-d89a6098bb12", multitabDashboardId: "59c94463-0da5-4cf5-a5a5-cbc3ed901ad6"};
instance.addWidgetComment(addComment, "callBackFnc");
function callBackFnc(args) {
// It will return the updated comments in the widget as arguments.
// Write a code block to perform an operation while adding the widget comment in the multitab dashboard.
}
Example for replying widget comment in normal dashboard
var instance = BoldBI.getInstance("container"); //container -> embed container id
var addComment = {content: "Replying widget comment in normal dashboard", widgetId: "7d118d8c-cee9-479e-befc-d2a46abc9aa5", dashboardId: "f3968817-f3e0-4747-9d7a-d89a6098bb12", parentCommentId: "4"};
instance.addWidgetComment(addComment, "callBackFnc");
function callBackFnc(args) {
// It will return the updated comments in the widget as arguments.
// Write a code block to perform an operation while replying the widget comment in the normal dashboard.
}
Example for replying widget comment in multitab dashboard
var instance = BoldBI.getInstance("container"); //container -> embed container id
var addComment = {content: "Replying widget comment in multitab dashboard", widgetId: "7d118d8c-cee9-479e-befc-d2a46abc9aa5", dashboardId: "f3968817-f3e0-4747-9d7a-d89a6098bb12", parentCommentId: "4", multitabDashboardId: "59c94463-0da5-4cf5-a5a5-cbc3ed901ad6"};
instance.addWidgetComment(addComment, "callBackFnc");
function callBackFnc(args) {
// It will return the updated comments in the widget as arguments.
// Write a code block to perform an operation while replying the widget comment in the multitab dashboard.
}
Parameter | Type | Description | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
addComment |
object |
The object contains the following parameters.
|
||||||||||
callBackFnc |
string |
Denotes the callback method name that must be defined. It will return the updated comments in the widget as arguments. |
This method will edit the widget comment of the respective widget of the dashboard.
Example for editing widget comment in normal dashboard
var instance = BoldBI.getInstance("container"); //container -> embed container id
var editComment = {content: "Editing widget comment in normal dashboard", commentId: "5", widgetId: "7d118d8c-cee9-479e-befc-d2a46abc9aa5", dashboardId: "f3968817-f3e0-4747-9d7a-d89a6098bb12"};
instance.editWidgetComment(editComment, "callBackFnc");
function callBackFnc(args) {
// It will return the updated comments in the widget as arguments.
// Write a code block to perform an operation while editing the widget comment in the normal dashboard.
}
Example for editing widget comment in multitab dashboard
var instance = BoldBI.getInstance("container"); //container -> embed container id
var editComment = {content: "Editing widget comment in multitab dashboard", commentId: "5", widgetId: "7d118d8c-cee9-479e-befc-d2a46abc9aa5", dashboardId: "f3968817-f3e0-4747-9d7a-d89a6098bb12", multitabDashboardId: "59c94463-0da5-4cf5-a5a5-cbc3ed901ad6"};
instance.editWidgetComment(editComment, "callBackFnc");
function callBackFnc(args) {
// It will return the updated comments in the widget as arguments.
// Write a code block to perform an operation while editing the widget comment in thbe multitab dashboard.
}
Parameter | Type | Description | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
editComment |
object |
The object contains the following parameters.
|
||||||||||
callBackFnc |
Denotes the callback method name that must be defined. It will return the updated comments in the widget as arguments. |
This method will delete the widget comment of the respective widget of the dashboard.
Example for deleting widget comment in normal dashboard
var instance = BoldBI.getInstance("container"); //container -> embed container id
var deleteComment = {commentId: "6", widgetId: "7d118d8c-cee9-479e-befc-d2a46abc9aa5", dashboardId: "f3968817-f3e0-4747-9d7a-d89a6098bb12"};
instance.deleteWidgetComment(deleteComment, "callBackFnc");
function callBackFnc(args) {
// It will return the updated comments in the widget as arguments.
// Write a code block to perform an operation while deleting the widget comment in the normal dashboard.
}
Example for deleting widget comment in multitab dashboard
var instance = BoldBI.getInstance("container"); //container -> embed container id
var deleteComment = {commentId: "6", widgetId: "7d118d8c-cee9-479e-befc-d2a46abc9aa5", dashboardId: "f3968817-f3e0-4747-9d7a-d89a6098bb12", multitabDashboardId: "59c94463-0da5-4cf5-a5a5-cbc3ed901ad6"};
instance.deleteWidgetComment(deleteComment, "callBackFnc");
function callBackFnc(args) {
// It will return the updated comments in the widget as arguments.
// Write a code block to perform an operation while deleting the widget comment in the multitab dashboard.
}
Parameter | Type | Description | ||||||||
---|---|---|---|---|---|---|---|---|---|---|
deleteComment |
object |
The object contains the following parameters.
|
||||||||
callBackFnc |
string | Denotes the callback method name that must be defined. It will return the updated comments in the widget as arguments. |