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

Username/Email:
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 55,425
» Latest member: WalterEmbr
» 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: 781
Inbuilt Capability of VC...
Forum: BDB - Platform
Last Post: shivani.jaipuria
12-27-2022, 05:23 AM
» Replies: 0
» Views: 553
Can dataset/cube refresh...
Forum: BDB - Platform
Last Post: shivani.jaipuria
12-27-2022, 05:08 AM
» Replies: 0
» Views: 518
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: 622
Data Preparation operati...
Forum: BDB-Data Prep & ETL
Last Post: shivani.jaipuria
12-26-2022, 10:09 AM
» Replies: 0
» Views: 536
Plugability Feature of B...
Forum: BDB Platform Q & A
Last Post: shivani.jaipuria
12-26-2022, 08:32 AM
» Replies: 0
» Views: 530
How to use environment va...
Forum: BDB Platform Q & A
Last Post: archana
12-26-2022, 05:57 AM
» Replies: 0
» Views: 546

 
  how to provide left border to any image or to any label or to any component
Posted by: sariga.vr@bdb.ai - 12-25-2022, 04:30 PM - Forum: BDB Designer Q & A - No Replies

var c = sdk.getDivIdFromComponetId( 'image_GP');                                                                              

sdk.applyStyle('#'+c,'border-left','4px solid #FFA500');

Print this item

  What is AUTOML in DS LAB?
Posted by: Anubhav - 12-24-2022, 09:48 AM - Forum: DS- Lab Q&A - No Replies

In DS LAB Automated machine learning (AutoML) is the process of applying machine learning (ML) models to real-world problems using automation. More specifically, it automates the selection, composition and parameterization of machine learning models.

Print this item

  Watermark error in pipeline
Posted by: Anubhav - 12-24-2022, 09:45 AM - Forum: BDB Data Pipeline Q & A - No Replies

what is watermark error in a pipeline and how to resolve it?

Print this item

  What are orphan pods error in the pipeline?
Posted by: Anubhav - 12-24-2022, 09:41 AM - Forum: BDB Data Pipeline Q & A - No Replies

When Kubernetes deletes an owner object, the dependents left behind are called orphan pods.

Print this item

  what are pods in docker component?
Posted by: Anubhav - 12-24-2022, 09:38 AM - Forum: BDB Data Pipeline Q & A - No Replies

  • A Pod represents a single instance of a running process in your cluster
  • Pods contain one or more containers, such as Docker containers. 
  • When a Pod runs multiple containers, the containers are managed as a single entity and share the Pod's resources.

Print this item

  How to test a pipeline?
Posted by: Anubhav - 12-24-2022, 08:48 AM - Forum: BDB - Data Pipeline - No Replies

Steps to perform Pipeline testing.



Attached Files
.docx   Pipeline Testing.docx (Size: 134.55 KB / Downloads: 67)
Print this item

  How to use calculated field?
Posted by: Anubhav - 12-24-2022, 08:38 AM - Forum: BDB - Designer - No Replies

Steps to use calculated fields.



Attached Files
.docx   Calculated Field.docx (Size: 38.57 KB / Downloads: 0)
Print this item

  Script to hide header from a datagrid
Posted by: Anubhav - 12-24-2022, 08:29 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

  Script to reduce Slider Height
Posted by: Anubhav - 12-24-2022, 08:28 AM - Forum: BDB Designer Q & A - No Replies

sdk.getWidget( 'timeline1').m_sliderheightratio=5;

Print this item

  Script to control bar width
Posted by: Anubhav - 12-24-2022, 08:26 AM - Forum: BDB Designer Q & A - No Replies

var x= sdk.getWidget( 'timeline66');
x.m_controlbarwidth =40;
x.m_barwidth =40;

Print this item