Welcome, Guest |
You have to register before you can post on our site.
|
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,020
|
Inbuilt Capability of VC...
Forum: BDB - Platform
Last Post: shivani.jaipuria
12-27-2022, 05:23 AM
» Replies: 0
» Views: 1,183
|
Can dataset/cube refresh...
Forum: BDB - Platform
Last Post: shivani.jaipuria
12-27-2022, 05:08 AM
» Replies: 0
» Views: 1,226
|
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,178
|
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,235
|
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,255
|
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,235
|
Data Preparation operati...
Forum: BDB-Data Prep & ETL
Last Post: shivani.jaipuria
12-26-2022, 10:09 AM
» Replies: 0
» Views: 1,204
|
Plugability Feature of B...
Forum: BDB Platform Q & A
Last Post: shivani.jaipuria
12-26-2022, 08:32 AM
» Replies: 0
» Views: 1,085
|
How to use environment va...
Forum: BDB Platform Q & A
Last Post: archana
12-26-2022, 05:57 AM
» Replies: 0
» Views: 1,087
|
|
|
What is the use of File Splitter? |
Posted by: Abhiram.m - 12-22-2022, 07:25 AM - Forum: BDB Data Pipeline Q & A
- No Replies
|
|
The file splitter component as the name suggests, splits the file into number of output events which is connected to it and process the data. That is, we can split the files according to the File types like csv, excel etc. We have to choose the number of outputs and file type for each.
|
|
|
Why do we use SFTP for file transfer? |
Posted by: Abhiram.m - 12-22-2022, 07:24 AM - Forum: BDB Data Pipeline Q & A
- No Replies
|
|
Secure File Transfer Protocol (SFTP) is a network protocol for securely accessing, transferring, managing large files and sensitive data. SFTP is used for transferring files over Transport Layer Security and the transfer of data for virtual private network (VPN) applications with high security.
It uses SSH to transfer the files and requires that the client be authenticated by the server.
|
|
|
Script for SetTop of the component |
Posted by: rubeena.hajira - 12-22-2022, 07:17 AM - Forum: BDB Designer Q & A
- No Replies
|
|
Script to set the Top of the component on click of another component:
*Below mentioned script should be written on any component script to set the Top of another component.
*(Componnet is svg523 Top measurement is 399).
sdk.setTop( 'svg523', 399 );
|
|
|
Script for SetTop of the component |
Posted by: rubeena.hajira - 12-22-2022, 07:12 AM - Forum: BDB Designer Q & A
- No Replies
|
|
Script to set the Top of the component on click of another component:
*Below mentioned script should be written on any component script area to set the Top of another component.
*(Componnet is svg523 Top measurement is 399).
sdk.setTop( 'svg523', 399 );
|
|
|
Script for Bar width and to adjust slider |
Posted by: rubeena.hajira - 12-22-2022, 06:59 AM - Forum: BDB Designer Q & A
- No Replies
|
|
Script for Bar width and to adjust slider:
*This is to be written on the Connection script area of the respective component.
var len=changedItem.attributes.data.length;
var x=sdk.getWidget('timeline_DR' );
sdk.getWidget( 'timeline_DR').m_sliderheightratio=4.87; //sliderheight
if(len>15)
{
//x.m_showslider=true;
var ab=((15*100)/len);
x.m_sliderrange=ab; //sliderrange
}
else{
//x.m_showslider=false;
if(changedItem.attributes.data.length<16)
{
x.m_controlbarwidth =60;
x.m_barwidth =60;
}
else {
x.m_controlbarwidth =65;
x.m_barwidth = 65;
}
}
|
|
|
Convert number to comma separated format |
Posted by: Sruthi P - 12-22-2022, 06:20 AM - Forum: BDB Designer Q & A
- No Replies
|
|
How to convert a number to comma separated format?
Add this in connection script
function numberWithCommas(x) {
return x.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ",");
}
var cost = changedItem.attributes.data[0].cost_amount;
var cost_comma=numberWithCommas(cost);
|
|
|
Basic Terminologies in Kafka.. |
Posted by: abhishek_acharya - 12-22-2022, 06:18 AM - Forum: BDB Data Pipeline Q & A
- No Replies
|
|
Terminologies in Kafka:
Producer: An application which publishes or writes data to kafka.
Consumer : An application that receives data from kafka.
Broker: A kafka server (Broker/Agent for the messages/data between producer and consumer)
Cluster: A group of computers/brokers connected together.
Topic: A name for a kafka stream.
Partition: A part of a topic.
Offset: Unique ID for a message within a partition.
Consumer Group: A group of consumers acting as a single logical unit.
|
|
|
How to get different symbol for graphics component? |
Posted by: abhishek_acharya - 12-22-2022, 06:09 AM - Forum: BDB Designer Q & A
- No Replies
|
|
In properties of graphics component select category as none then go to svg path string and click on shape browser then u will get into new page(bdb font-icons) from that copy whichever shape name u want and paste that name with bd as prefix for ex: bd-picker and then click on save.
|
|
|
|