Hi guys.
I'm developing a dashboard using CDF and I have some problem to set the colHeader property of a table.
I have a definition of a TableComponent like the following one:
Why the result table doesn't show me the colHerader name set in the function in the colHeader properties, even if I'm able to see the exact name if I put an alert int the case definition? My column header have no name.
In the same way I'm not able to change the col header within the query function.
I need your help please!
Regards
Nico
I'm developing a dashboard using CDF and I have some problem to set the colHeader property of a table.
I have a definition of a TableComponent like the following one:
Code:
tabDef : {
lengthChange : false,
tableStyle : 'themeroller',
colHeaders : function() {
var colHeaders = [" ","X","Y"];
switch (selection)
{
case 1:
colHeaders[0] = "A";
alert(colHeaders[0]) =====> OK IT SHOW THE CORRECT VALUE
break;
case 2:
colHeaders[0] = "B";
break;
case 3:
colHeaders[0] = "C";
break;
}
return colHeaders;
},
colTypes : ['string','numeric', 'numeric'],
colWidths : ['0,50', '0,25', '0,25'],
colFormats: [null,'%.0f','%.0f'],
queryType : 'mdx',
displayLength : 10,
sort : true,
info : false,
filter : true,
catalog : "solution:"+settings.schemaXml,
jndi : settings.connessione,
urlTemplate: "javascript:planciaAnagrafe.drillDown('{valore}')",
parameterName: "valore",
query : function(){
this.urlTemplate = "javascript:function.drillDown('{valore}')";
this.colHeaders = ["D", "X", "Y"];
var query = "select ...."
);
return query;
}
In the same way I'm not able to change the col header within the query function.
I need your help please!
Regards
Nico