Welcome, Guest
You have to register before you can post on our site.

Username/Email:
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 81,224
» Latest member: NatashaHenstrichi
» Forum threads: 389
» Forum posts: 395

Full Statistics

Latest Threads
What is the maximum numbe...
Forum: BDB Designer Q & A
Last Post: sariga.vr@bdb.ai
12-28-2022, 07:59 AM
» Replies: 0
» Views: 8,011
Inbuilt Capability of VC...
Forum: BDB - Platform
Last Post: shivani.jaipuria
12-27-2022, 05:23 AM
» Replies: 0
» Views: 1,182
Can dataset/cube refresh...
Forum: BDB - Platform
Last Post: shivani.jaipuria
12-27-2022, 05:08 AM
» Replies: 0
» Views: 1,223
How to load business stor...
Forum: BDB Designer Q & A
Last Post: sariga.vr@bdb.ai
12-26-2022, 04:47 PM
» Replies: 0
» Views: 3,172
How to load business stor...
Forum: BDB Designer Q & A
Last Post: sariga.vr@bdb.ai
12-26-2022, 04:46 PM
» Replies: 0
» Views: 3,231
How to load business stor...
Forum: BDB Designer Q & A
Last Post: sariga.vr@bdb.ai
12-26-2022, 04:45 PM
» Replies: 0
» Views: 2,250
How to load business stor...
Forum: BDB Designer Q & A
Last Post: sariga.vr@bdb.ai
12-26-2022, 04:44 PM
» Replies: 0
» Views: 2,229
Data Preparation operati...
Forum: BDB-Data Prep & ETL
Last Post: shivani.jaipuria
12-26-2022, 10:09 AM
» Replies: 0
» Views: 1,202
Plugability Feature of B...
Forum: BDB Platform Q & A
Last Post: shivani.jaipuria
12-26-2022, 08:32 AM
» Replies: 0
» Views: 1,083
How to use environment va...
Forum: BDB Platform Q & A
Last Post: archana
12-26-2022, 05:57 AM
» Replies: 0
» Views: 1,083

 
  How to use Cluster Event ?
Posted by: Ruban - 12-23-2022, 11:03 AM - Forum: BDB Data Pipeline Q & A - No Replies

Whenever we are working on POC or any project , there will be some trial and error , testing to achieve the business requirement. In those type of scenarios , we might have to flush all events or delete all events [Kafka Topics]. {In case if we copy paste the component}


We may be having many kafka events , going individually to each event to flush or delete will make us tired.
In those time , we can use this flush all or delete all option in pipeline module

In left tab in pipeline module , Click on Cluster Events and click on the pipeline you were working and click Flush All or Delete All.



Attached Files
.png   Screenshot from 2022-12-23 16-24-19.png (Size: 56.93 KB / Downloads: 274)
Print this item

  Resizing the alert icons in datagrid
Posted by: harshabalan - 12-23-2022, 11:02 AM - Forum: BDB Designer Q & A - No Replies

Can we resize the datagrid alert icons ?


(12-23-2022, 11:02 AM)harshabalan Wrote: Can we resize the datagrid alert icons ?

datagrid  icon resizing can be acheived using the below script ; The scrpt has to be provide in dashboard script area 

AlertColumn.prototype.getCustomAlert = function (showData, color, arrowPosition, customIcon) {
var text = '<div style=" display:inline-block;text-decoration:inherit;vertical-align:top;margin-top:2px;">' + showData + '</div>';
var alertImage = '<div style="width:0px; height:17px;margin-left:5px;margin-right:12px; display:inline-block;"><span class="'+customIcon+'" style="color:' + color + ';font-size:9px;"></span></div>';
if (this.m_alertposition == "left"){
return alertImage + text;
} else {
return text + alertImage;
}
};

Print this item

  What does the Cluster events menu do?
Posted by: aishwarya.rajan@bdb.ai - 12-23-2022, 11:02 AM - Forum: BDB Data Pipeline Q & A - No Replies

This feature enables a user to monitor all the events created in the pipeline environment, the deleted pipeline events can also be visible and can be deleted permanently and flushed.
Operations like delete and flush events can be performed at in a single go

Print this item

  What is a project and notebook in Data Science lab?
Posted by: gnanashri - 12-23-2022, 11:02 AM - Forum: DS- Lab Q&A - No Replies

While you can create/upload numerous notebooks in a single project, a project can be formed by providing the meta data for it, which contains what the project is, some description, the environment it runs on, and the external libraries you wish to include for your project. An notebook is the same as your Jupyter or Google collab. 

Print this item

  How to hide header from datagrid ?
Posted by: Asma M - 12-23-2022, 11:02 AM - Forum: BDB Designer Q & A - No Replies

"sdk.setAfterRenderCallBack('datagrid508', function() {
var temp = sdk.getWidget('datagrid508');
$(""#"" + temp.m_componentid).find('.datagrid-header-row').css({""visibility"": ""collapse"" }); });"

Print this item

  Use of Customized Charts
Posted by: abhishek_acharya - 12-23-2022, 11:02 AM - Forum: BDB Designer Q & A - No Replies

  • In Components we have Customized Charts as well by which we can create different kind of charts, maps etc… based on the requirements. 

  • Based on the requirement like, If we need some different kind of charts which cannot be possible with the available charts then we can use Customized Charts. 

  • Custom charts allow you to visualize the collected analytics data in your analytics data store as charts that are not available by default.  

  • For Creation of these charts we need to write the Java script related to the chart in source content. 

Print this item

  How to create a text box with some placeholder which disappears on click?
Posted by: sariga.vr@bdb.ai - 12-23-2022, 11:01 AM - Forum: BDB - Designer - No Replies

<style>input:focus {outline:none;}::placeholder {color: #6a6b70;}</style><input id="Target_filter_search01" autocomplete="off" placeholder="Enter Customer MSIDN/MSISDN range here....." style = "width: 100%; height : 100%; padding :0px 0px 0px 10px; color : #6a6b70; border : 0px; border-radius: 4px; background : #f2f0f0;"/> <style> input:focus { outline:none; } </style> <script> //debugger; var inp = document.getElementById("Target_filter_search01"); inp.addEventListener("keyup", function(event) { if (event.keyCode === 13) { //alert('l'); var a = $('#Target_filter_search01').val(); </script>

 Using this code we can create a textbox with placeholder. We have to write the text which should be displayed as a placeholder in that place where it is marked with yellow color.

Print this item

  Parameters/filters in Data Set
Posted by: manirathinavelu.m - 12-23-2022, 11:00 AM - Forum: BDB Platform Q & A - No Replies

What are the parameter types supported in Data Sets and how to utilise them?  Like, mandatory and optional parameters

Print this item

  How to share dashboards amongst users/peers?
Posted by: gnanashri - 12-23-2022, 11:00 AM - Forum: BDB Designer Q & A - No Replies

Using the share icon on each dashboard in the manage dashboard area, you can select the dashboard you want to share with the list of users that is accessible to you. 

Print this item

  Get current date in dashboard using script
Posted by: shreekantgosavi - 12-23-2022, 11:00 AM - Forum: BDB Designer Q & A - No Replies

Code:
var todayDate = new Date().toISOString().slice(0, 10);
console.log(todayDate);

Print this item