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

Username/Email:
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 55,331
» Latest member: DebraGrass
» 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: 778
Inbuilt Capability of VC...
Forum: BDB - Platform
Last Post: shivani.jaipuria
12-27-2022, 05:23 AM
» Replies: 0
» Views: 549
Can dataset/cube refresh...
Forum: BDB - Platform
Last Post: shivani.jaipuria
12-27-2022, 05:08 AM
» Replies: 0
» Views: 516
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: 679
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: 690
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: 645
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: 621
Data Preparation operati...
Forum: BDB-Data Prep & ETL
Last Post: shivani.jaipuria
12-26-2022, 10:09 AM
» Replies: 0
» Views: 534
Plugability Feature of B...
Forum: BDB Platform Q & A
Last Post: shivani.jaipuria
12-26-2022, 08:32 AM
» Replies: 0
» Views: 528
How to use environment va...
Forum: BDB Platform Q & A
Last Post: archana
12-26-2022, 05:57 AM
» Replies: 0
» Views: 545

 
  Hyperlink in Datagrid
Posted by: rubeena.hajira - 12-22-2022, 04:55 PM - Forum: BDB Data Pipeline Q & A - No Replies

How to add a Hyperlink in Datagrid?

Ans: It is possible by selecting Hyperlink in the column type dropdown in the Properties of Dataset tab on a selected field and that field should have supportive data.

Print this item

  Alerts in the Datagrid not working
Posted by: rubeena.hajira - 12-22-2022, 04:38 PM - Forum: BDB Designer Q & A - No Replies

Why does the column not show an alert even after enabling Show alert in the indicator of the Dataset tab?

Ans: It won't show an alert until the column type is set as 'Numeric' also ensure the alert conditions are set properly in the Properties of Dataset tab on the selected field.

Print this item

  Script to set height of the Datagrid component
Posted by: rubeena.hajira - 12-22-2022, 12:47 PM - Forum: BDB Designer Q & A - No Replies

Script to set the height of Datagrid component on click of another component.
* Below mentioned script is to be written on the label component script.
* Click on the label the Datagrid height will be changed which is set to 300 in the below-mentioned script.

var a = sdk.getWidget( 'datagrid1' );
a.m_height=300;
a.draw();

Print this item

  Script to add conditional statements in calculated field
Posted by: Sruthi P - 12-22-2022, 12:28 PM - Forum: BDB Designer Q & A - No Replies

How to write conditional statements in calculated field?

Add the script in calculated script area 

‘sdk.calculation.getDivision(Marks)’

Add the below script in connection script area. 

sdk.calculation = sdk.calculation || {}; 
sdk.calculation.getDivision = function(marks){ 
if(marks>=50) 
return 'Pass'; 
else if(marks<50) 
return 'Fail'; 
}; 

Print this item

  Remove right Y-axis labels
Posted by: rubeena.hajira - 12-22-2022, 12:18 PM - Forum: BDB Designer Q & A - No Replies

Script to Remove the Right Y-axis label:
* Below is the script to remove the right Y-axis labels. 
* This should be written in on the dashboard Script.

sdk.setAfterRenderCallBack( 'timeline1',function() {
$(".rightyaxislabelgrp").css({"font-size":"0px"});
});

Print this item

  Change Theme of Story
Posted by: Abhiram.m - 12-22-2022, 11:57 AM - Forum: BDB Business Story Q & A - No Replies

The user can change the look and feel of the entire story through this option. 

Themes Available:
     Default (Picture 1)
     Dark (Picture 2)
     Moon (Picture 3)

How to do:
     i) Click the ‘Change Theme’ icon from the storyboard. 
    ii) A menu opens with the available themes for the story.



Attached Files
.png   Picture 1.png (Size: 46.73 KB / Downloads: 193)
.png   Picture 2.png (Size: 45.83 KB / Downloads: 192)
.png   Picture 3.png (Size: 45.11 KB / Downloads: 168)
Print this item

  Change of color while hovering
Posted by: rubeena.hajira - 12-22-2022, 11:56 AM - Forum: BDB Designer Q & A - No Replies

Script to change color while hovering (moving cursor)on the component:
* This should be written in the component script.

var p=sdk.getContext( 'applyfiltercolor' );
if(p==0)
{
}
else
{
sdk.setContext( 'applyfiltercolor',0);

var xx=sdk.getWidget( 'label1' );
xx.m_cursortype="default";
xx.draw();

var b = sdk.getDivIdFromComponetId( 'label1' );
sdk.applyStyle('#'+b+' span',"background-color", "rgba(254,0,34,0.7)");
$('#Target_filter_search01').css("background-color","#f2f0f0");
}

Print this item

  Dashboard height and width Adjustments..
Posted by: mohd.gulam - 12-22-2022, 11:44 AM - Forum: BDB Designer Q & A - No Replies

To set dashboard height:

sdk.applystyles("#draggablesParentdiv"+sdk.dashboard.m_id,{"height":"1674px"})

To set Dashboard width:

sdk.applystyles("#draggablesParentdiv"+sdk.dashboard.m_id,{"width":"1200px"})

Print this item

  Enhanced look for filters
Posted by: Abhiram.m - 12-22-2022, 11:42 AM - Forum: BDB Designer Q & A - No Replies

Here,
List of filters are added to a variable called ui_filter.

var ui_filter= ['filter306','filter310','filter57','filter52','filter314'];
ui_filter.map(function(id){
var a= sdk.getWidget( id );
a.m_enhanceCheckbox=true;
});

Print this item

  Script to left align a component
Posted by: Abhiram.m - 12-22-2022, 11:32 AM - Forum: BDB Designer Q & A - No Replies

Here, svg5  is aligned to left.

sdk.setLeft( 'svg5', 10 );

Print this item