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,223
|
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,229
|
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
|
|
|
Resizing the alert icons in datagrid |
Posted by: harshabalan - 12-23-2022, 11:02 AM - Forum: BDB Designer Q & A
- No Replies
|
|
Can we resize the datagrid alert icons ?
(12-23-2022, 11:02 AM)harshabalan Wrote: Can we resize the datagrid alert icons ?
datagrid icon resizing can be acheived using the below script ; The scrpt has to be provide in dashboard script area
AlertColumn.prototype.getCustomAlert = function (showData, color, arrowPosition, customIcon) {
var text = '<div style=" display:inline-block;text-decoration:inherit;vertical-align:top;margin-top:2px;">' + showData + '</div>';
var alertImage = '<div style="width:0px; height:17px;margin-left:5px;margin-right:12px; display:inline-block;"><span class="'+customIcon+'" style="color:' + color + ';font-size:9px;"></span></div>';
if (this.m_alertposition == "left"){
return alertImage + text;
} else {
return text + alertImage;
}
};
|
|
|
What is a project and notebook in Data Science lab? |
Posted by: gnanashri - 12-23-2022, 11:02 AM - Forum: DS- Lab Q&A
- No Replies
|
|
While you can create/upload numerous notebooks in a single project, a project can be formed by providing the meta data for it, which contains what the project is, some description, the environment it runs on, and the external libraries you wish to include for your project. An notebook is the same as your Jupyter or Google collab.
|
|
|
How to hide header from datagrid ? |
Posted by: Asma M - 12-23-2022, 11:02 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"" }); });"
|
|
|
Use of Customized Charts |
Posted by: abhishek_acharya - 12-23-2022, 11:02 AM - Forum: BDB Designer Q & A
- No Replies
|
|
- In Components we have Customized Charts as well by which we can create different kind of charts, maps etc… based on the requirements.
- Based on the requirement like, If we need some different kind of charts which cannot be possible with the available charts then we can use Customized Charts.
- Custom charts allow you to visualize the collected analytics data in your analytics data store as charts that are not available by default.
- For Creation of these charts we need to write the Java script related to the chart in source content.
|
|
|
How to create a text box with some placeholder which disappears on click? |
Posted by: sariga.vr@bdb.ai - 12-23-2022, 11:01 AM - Forum: BDB - Designer
- No Replies
|
|
<style>input:focus {outline:none;}::placeholder {color: #6a6b70;}</style><input id="Target_filter_search01" autocomplete="off" placeholder="Enter Customer MSIDN/MSISDN range here....." style = "width: 100%; height : 100%; padding :0px 0px 0px 10px; color : #6a6b70; border : 0px; border-radius: 4px; background : #f2f0f0;"/> <style> input:focus { outline:none; } </style> <script> //debugger; var inp = document.getElementById("Target_filter_search01"); inp.addEventListener("keyup", function(event) { if (event.keyCode === 13) { //alert('l'); var a = $('#Target_filter_search01').val(); </script>
Using this code we can create a textbox with placeholder. We have to write the text which should be displayed as a placeholder in that place where it is marked with yellow color.
|
|
|
|