cancel
Showing results for 
Search instead for 
Did you mean: 

Pivot table modifications

harish
8 - Cloud Apps
8 - Cloud Apps

I have pivot chart , and i wanted to differentiate the total with double line so i used a script and i uploaded it in the respective widgets edit script option and i am getting the necessary changes .
The script follows :

 
//double line
 
widget.on('domready', function () {
$("td[class*='--row-13'] div.table-grid__content__inner").parent().parent().css('border-top','double');
$("td[class*='--col-12'] div.table-grid__content__inner").parent().parent().parent().css('border-left','double');
});

 

But i have other pivot table widgets , double line is coming in all those widgets which i don't want and even i dint applied the script in those widgets for example:
@DRay 

 

so what changes i need to do ?

 

1 ACCEPTED SOLUTION

rapidbisupport
10 - ETL
10 - ETL

Hi @harish ,

You could try this, replacing the widgetID with the table you want to change:

$("[widgetid='65bacb7b874ecd0042b01e97']").find("td[class*='--row-13'] div.table-grid__content__inner")

Let me know how you go?

Thanks,

Daniel

RAPID BI

[email protected]

RAPID BI - Sisense Professional Services | Implementations | Custom Add-ons

View solution in original post

1 REPLY 1

rapidbisupport
10 - ETL
10 - ETL

Hi @harish ,

You could try this, replacing the widgetID with the table you want to change:

$("[widgetid='65bacb7b874ecd0042b01e97']").find("td[class*='--row-13'] div.table-grid__content__inner")

Let me know how you go?

Thanks,

Daniel

RAPID BI

[email protected]

RAPID BI - Sisense Professional Services | Implementations | Custom Add-ons