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,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,221
|
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,228
|
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
|
|
|
remove secondary row header from pivotgrid |
Posted by: harshabalan - 12-23-2022, 10:57 AM - Forum: BDB Designer Q & A
- No Replies
|
|
How to remove the secondary header row in pivotgrid.
(12-23-2022, 10:57 AM)harshabalan Wrote: How to remove the secondary header row in pivotgrid and change the header text alignment. provide the rendercallback script in the dashboard script area :
sdk.setAfterRenderCallBack('pivotgrid1', function() {
$("#dataGridDiv"+sdk.getWidget('pivotgrid1').m_objectid).find(".datagrid-header-row .datagrid-cell-group").css("text-align","center");
$("#dataGridDiv"+sdk.getWidget('pivotgrid1').m_objectid).find(".datagrid-header-row .datagrid-cell").css("text-align","center");
$("#" + sdk.getWidget('pivotgrid1').m_componentid).find('.datagrid-header-row').eq(2).css({"visibility": "collapse" });
});
|
|
|
How do you publish a dashboard? |
Posted by: gnanashri - 12-23-2022, 10:56 AM - Forum: BDB Designer Q & A
- No Replies
|
|
You can select the dashboard you want to publish by selecting "Manage" from the Dashboard page, then click the "Publish" cloud icon. The dashboard can be made public for you, any team members, or a user group. Your home page will display this published dashboard in view-only mode.
|
|
|
Time out in dashboard |
Posted by: Athi - 12-23-2022, 10:55 AM - Forum: BDB Designer Q & A
- No Replies
|
|
Script to use time out in dashboard
var id = setTimeout(function() {
sdk.setContext( 'timeout', '1' );
}, 30000);\
Above script will wait for 30 seconds and execute the script written inside of it i.e. setting the context
|
|
|
Excluding User or User Group from accessing Data Sheet |
Posted by: rubeena.hajira - 12-23-2022, 10:55 AM - Forum: BDB Designer Q & A
- No Replies
|
|
How to exclude any User or User Group from accessing Data Sheet?
· Navigate to the Data Sheets list.
· Click the Publish icon for the selected Data Sheet.
· The Publish Data Sheet window opens.
· Select the USER LIST or USER GROUPS tab to share the published Data Sheet (Use the EXCLUDE USER tab if you want to exclude any user from the rights to access a data sheet).
· Click the Save option.
|
|
|
What is sharding and it's uses? |
Posted by: abhishek_acharya - 12-23-2022, 10:55 AM - Forum: BDB Data Pipeline Q & A
- No Replies
|
|
Sharding
Database sharding is the process of storing a large database across multiple machines. A single machine, or database server, can store and process only a limited amount of data. Database sharding overcomes this limitation by splitting data into smaller chunks, called shards, and storing them across several database servers.
All database servers usually have the same underlying technologies, and they work together to store and process large volumes of data.
Uses - Sharding makes the Database smaller
- Sharding makes the Database faster
- Sharding makes the Database much more easily manageable
- Sharding can be a complex operation sometimes
- Sharding reduces the transaction cost of the Database
- Each shard reads and writes its own data.
- Many NoSQL databases offer auto-sharding.
- Failure of one shard doesn’t effect the data processing of other shards.
|
|
|
Adjust slider range and bar width using script |
Posted by: neeraja.pattathil@bdb.ai - 12-23-2022, 10:55 AM - Forum: BDB Designer Q & A
- No Replies
|
|
How to adjust the slider range and bar width of a component by using a script?
Use: to adjust the slider range and bar width.
Script area: connection
Script:
var len=changedItem.attributes.data.length;
var x=sdk.getWidget('timeline56' );
sdk.getWidget( 'timeline56').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 =40;
x.m_barwidth =40;
}
else {
x.m_controlbarwidth =45;
x.m_barwidth = 45;
}
}
|
|
|
|