Forum Discussion

Dennis_M's avatar
Dennis_M
Cloud Apps
11-23-2021
Solved

Table Widget Format Header Row

Hello, I'm new to the Beta Community and a Java novice.  Can a member direct me to internal Sisense sources on how to format a table widget's column header row and selected table columns (background ...
  • javierecfpn's avatar
    javierecfpn
    11-26-2021

    I tested this with version L2021.10.0.124 on Linux, but with a pivot table, now that I see more clearly you are using a normal table, try this

    widget.on('domready', function(se, ev) {
    	
    	//change color of header cells
    	var cols = $(".dataTable.no-footer tr th", element);
    	cols.css("background", "cyan");
    	
    	//change width of columns
    	cols.css("width", "200px");
    	
    	//center align
    	cols.css("text-align", "center");
    });