x lines with headres???
Can i show a table like this: ???
color:blue | header1 | header2 | header3 | header 4 |
-----------------------------------------------
color: red | header5 | header6 | header7 | header8 |
-----------------------------------------------
color:blue | data 01 | data 02 | data 03 | data 04 |
-----------------------------------------------
color: red | data 05 | data 06 | data 07 | data 08 |
Are this multi-line-headers??? I´m not sure.... :-/
Ulf
September 18,
Alex (ActiveWidgets)
September 18,
hmm....okay but can I show a table with 'obj.setHeaderCount(2);' like this?:
<img src="
http://parthi.pa.funpic.de/down/headers.gif"> ???
when i setHeaderCount(2) the second headerline will have the same width like the first headerline....but this isn´t what i mean....
I want to change the width of the first headerline und all (orange) rows will get this, but not the second header and the (yellow) rows.
Do you know what i mean???
Sorry for my english..... :-)
Ulf
September 19,
SORRY -> last POST was wrong!!!!!
look at the picture (thats correct), please.....
How can i show a table like this???
The method setHeaderCount(2) set the headers not shifted (german->versetzt)*g
sorry for my english.... :-)
Ulf
September 19,
I'll be back ;-)
When i used the new AW.UI.Grid; all is allright, i can scroll all rows...but:
When I used the < new AW.Grid.Extended; >, the first row of my table will be 'freeze' and do not scroll, why? Can i handle this???
my code:
<script>
var obj = new AW.Grid.Extended;
obj.setColumnCount(10);
obj.setRowCount(100);
obj.setRowCount(100);
var t = ["cell"];
for(var i=0; i<obj.getRowCount(); i++) {
obj.setCellText("PCH-ZU 8",1,i*2+1);
}
obj.setHeaderCount(2);
obj.setHeaderText(function(col, row){return ""});
obj.setHeaderText(["","Kfz-Kenn."], 1);
obj.setHeaderText("** header **", 0, 0);
document.write(obj);
</script>
Ulf
September 19,
as I understand, the header is not supposed to scroll. This is what I would expect, including the second row of the header.
Joel
September 19,
hätte ich nur besser aufgepasst in Englisch *ggg
sorry i mean the first column :-/
the first column isn´t scroll when i scroll to left or right....
I'm awfully sorry -> my english :-)
Ulf
September 19,
Yes, you need obj.setFixedLeft(0); default value is '1' .
Carlos
September 19,