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,021
|
Inbuilt Capability of VC...
Forum: BDB - Platform
Last Post: shivani.jaipuria
12-27-2022, 05:23 AM
» Replies: 0
» Views: 1,184
|
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,179
|
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,236
|
Data Preparation operati...
Forum: BDB-Data Prep & ETL
Last Post: shivani.jaipuria
12-26-2022, 10:09 AM
» Replies: 0
» Views: 1,208
|
Plugability Feature of B...
Forum: BDB Platform Q & A
Last Post: shivani.jaipuria
12-26-2022, 08:32 AM
» Replies: 0
» Views: 1,090
|
How to use environment va...
Forum: BDB Platform Q & A
Last Post: archana
12-26-2022, 05:57 AM
» Replies: 0
» Views: 1,089
|
|
|
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.
|
|
|
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.
|
|
|
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();
|
|
|
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';
};
|
|
|
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"});
});
|
|
|
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");
}
|
|
|
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;
});
|
|
|
|