Not able to use $ special characters with table width column

Hello Team Helical,

I am using Helical Insight 3.1 enterprise edition when I am creating a tabular report and using “table width” to specify the width of various columns of the tabular reports. I have renamed the column names and added $.
However this is not working properly. Both of them are not getting applied concurrently.

Thank You
Kevin.

1 Like

Hello Kevin,

Dear User ,
The table width script is not working because of the dollar symbol present in the column name. Similarly if there are other special characters you might get the same behavior. There is an alternative for that we can provide each column width using custom CSS also. We are providing CSS: ( you can change column numbers , width as per your requirement) :

  1. Open the tabular report in edit mode and provide below CSS in CSS place holder then apply ( sharing the screenshot also for reference). In below CSS we have handled the width of the table columns in the first, second and third column.

    th:nth-child(1) {
    width :150px !important;

    }
    th:nth-child(2) {
    width :300px !important;

    }
    th:nth-child(3) {
    width :100px !important;

    }

Thank You
From Team Helical