Is it possible to show above some columns a certain text?
Above columns 3 to 5 i want to have the text 'Summary'
Above columns 6 to 9 i want to have the text 'Realisation'
I hope you will help me (as ever)
Jim
Is it possible to show above some columns a certain text?
Above columns 3 to 5 i want to have the text 'Summary'
Above columns 6 to 9 i want to have the text 'Realisation'
I hope you will help me (as ever)
Jim
Could you be more specific where the text should appear? Is this a basic table or a crosstable? Do you just want to add another header row?
--
myDBR Team
Its a basis table.
I want to add another header row, above the other one.
And with one column-width exactly like the widths of columns 3 to 5 where i can put some text in it. And the same for columns 6 to 9....
You can use jQuery insertBefore to add additional to row the the header.
if you have table which has a resultclass mytable. You can do:
$('tr_th_definition').insertBefore('.mytable tr.row_header');
replace the tr_th_definition with your HTML defining the header columns and styles.
--
myDBR Team
Thank you very much
You must log in to post.