The link to the side is
http://www.mjh-software.org/wwb-extension-tabelle-01-inline.php
It's the table after capter "6. Beispiel".
It's the source part, line 330 and 339 from PHP side. I have set for
test the line
stylewert = "{'style': 'border: 1px solid
green;'}";
fixed burned.
for ( var j=0; j<<?php echo $zeilen_table_div ?>; j++)
{
for ( var i=0; i<<?php echo $spalten_table_div ?>; i
++)
{
switch ( spaltentyp_table_div[i] )
{
case "string":
count=count+1;
var text = zellenwert_table_div[count];
data.setCell ( j, i, text );
var stylewert = stylewert_table_div[count];
stylewert = "{'style': 'border: 1px solid
green;'}";
data.setProperties ( j, i, stylewert );
count=count+1;
break;
case "number":
var pos = parseFloat
( zellenwert_table_div[count] );
var text = zellenwert_table_div[count+1];
data.setCell ( j, i, pos, text );
var stylewert = stylewert_table_div[count+1];
stylewert = "{'style': 'border: 1px solid
green;'}";
data.setProperties ( j, i, stylewert );
count=count+2;
break;
}
}
}
--
You received this message because you are subscribed to the Google Groups
"Google Visualization API" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-visualization-api?hl=en.