Hello all.
There is what i would like to do, I have a page that pulls all the
hours for our staff over a given period calculated them and reports
back on 15 different colums and is aproximatly 500 individual rows of
data for a table. Now as you could imagine that is a night mare to look
at for anyone, i have done a few things to make remeber which columns
are which however a simple Solution would be to the top row, or rows i
define stay constantly at the top as your scroll down.
This is classic ASP and not ASP.NET, I can find alot of resources for
ASP.NET but nothing for ASP.
I have considered Frames, but who really wants to mess around with that
ad there are alot of controls at the top of the page that manipulate
the data.
Also i have heard of using JavaScript or CSS, Has anyone achieved this
before?
I am not sure if you need my code or not as this is just classic table
design
Thanks In Advance 13 11066
Nico VanHaaster wrote: Hello all.
There is what i would like to do, I have a page that pulls all the hours for our staff over a given period calculated them and reports back on 15 different colums and is aproximatly 500 individual rows of data for a table. Now as you could imagine that is a night mare to look at for anyone, i have done a few things to make remeber which columns are which however a simple Solution would be to the top row, or rows i define stay constantly at the top as your scroll down.
This is classic ASP and not ASP.NET, I can find alot of resources for ASP.NET but nothing for ASP.
I have considered Frames, but who really wants to mess around with that ad there are alot of controls at the top of the page that manipulate the data.
Also i have heard of using JavaScript or CSS, Has anyone achieved this before?
Personally, I would consider paginating the results, but if you really
want to present 500 rows on a page then you could have a look at http://underscorebleach.net/jotsheet...ith-css-layout
which uses css to apply a framelike appearance. Apparently this
doesn't work in all browsers, so you might want to google about a bit.
If you are intent on a client-side solution (frames/javascript/css) you
would be better off taking your question to a more appropriate group.
--
Mike Brind
Nico VanHaaster wrote on 24 mei 2006 in
microsoft.public.inetserver.asp.general: Hello all.
There is what i would like to do, I have a page that pulls all the hours for our staff over a given period calculated them and reports back on 15 different colums and is aproximatly 500 individual rows of data for a table. Now as you could imagine that is a night mare to look at for anyone, i have done a few things to make remeber which columns are which however a simple Solution would be to the top row, or rows i define stay constantly at the top as your scroll down.
This is classic ASP and not ASP.NET, I can find alot of resources for ASP.NET but nothing for ASP.
I have considered Frames, but who really wants to mess around with that ad there are alot of controls at the top of the page that manipulate the data.
Also i have heard of using JavaScript or CSS, Has anyone achieved this before?
This is not a serversode/ASP solution you are after,
so realy off-topic here.
Please continue on a clientside html or css NG
==========
Give the top row a seperate <table> and have the content rows
in a table with a fixed height, so that a scrollbar will develop if the
table row number exeeds the set height.
Specify each td width:??px; correctly and use table-layout:fixed; for these
tables.
--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
Hi Nico,
Here is code for you.. Just modify it and its your.
<table border="1" width=500 cellpadding=0 cellspacing=0>
<tr>
<td width="25%">First</td>
<td width="25%">Second</td>
<td width="25%">Third</td>
<td width="25%">Fourth</td>
</tr>
<tr>
<td colspan="4">
<div style="position: absolute;height:227px;overflow:auto;">
<table width="500" border="1" ID="Table1" cellpadding=0
cellspacing=0>
<tr>
<td width="25%">1</td>
<td width="25%">2</td>
<td width="25%">3</td>
<td width="25%">4</td>
</tr>
<tr>
<td width="25%">1</td>
<td width="25%">2</td>
<td width="25%">3</td>
<td width="25%">4</td>
</tr>
<tr>
<td width="25%">1</td>
<td width="25%">2</td>
<td width="25%">3</td>
<td width="25%">4</td>
</tr>
<tr>
<td width="25%">1</td>
<td width="25%">2</td>
<td width="25%">3</td>
<td width="25%">4</td>
</tr>
<tr>
<td width="25%">1</td>
<td width="25%">2</td>
<td width="25%">3</td>
<td width="25%">4</td>
</tr>
<tr>
<td width="25%">1</td>
<td width="25%">2</td>
<td width="25%">3</td>
<td width="25%">4</td>
</tr>
<tr>
<td>1</td>
<td>2</td>
<td>3</td>
<td>4</td>
</tr>
<tr>
<td>1</td>
<td>2</td>
<td>3</td>
<td>4</td>
</tr>
<tr>
<td>1</td>
<td>2</td>
<td>3</td>
<td>4</td>
</tr>
<tr>
<td>1</td>
<td>2</td>
<td>3</td>
<td>4</td>
</tr>
<tr>
<td>1</td>
<td>2</td>
<td>3</td>
<td>4</td>
</tr>
<tr>
<td>1</td>
<td>2</td>
<td>3</td>
<td>4</td>
</tr>
<tr>
<td>1</td>
<td>2</td>
<td>3</td>
<td>4</td>
</tr>
<tr>
<td>1</td>
<td>2</td>
<td>3</td>
<td>4</td>
</tr>
<tr>
<td>1</td>
<td>2</td>
<td>3</td>
<td>4</td>
</tr>
<tr>
<td>1</td>
<td>2</td>
<td>3</td>
<td>4</td>
</tr>
<tr>
<td>1</td>
<td>2</td>
<td>3</td>
<td>4</td>
</tr>
</table>
</div>
</td>
</tr>
</table>
"vicky" <vi*********@yahoo.com> wrote in message
news:11**********************@y43g2000cwc.googlegr oups.com... Hi Nico,
Here is code for you.. Just modify it and its your.
<table border="1" width=500 cellpadding=0 cellspacing=0> <tr> <td width="25%">First</td> <td width="25%">Second</td> <td width="25%">Third</td> <td width="25%">Fourth</td> </tr> <tr> <td colspan="4"> <div style="position: absolute;height:227px;overflow:auto;"> <table width="500" border="1" ID="Table1" cellpadding=0 cellspacing=0> <tr> <td width="25%">1</td> <td width="25%">2</td> <td width="25%">3</td> <td width="25%">4</td> </tr> <tr> <td width="25%">1</td> <td width="25%">2</td> <td width="25%">3</td> <td width="25%">4</td> </tr> <tr> <td width="25%">1</td> <td width="25%">2</td> <td width="25%">3</td> <td width="25%">4</td> </tr> <tr> <td width="25%">1</td> <td width="25%">2</td> <td width="25%">3</td> <td width="25%">4</td> </tr> <tr> <td width="25%">1</td> <td width="25%">2</td> <td width="25%">3</td> <td width="25%">4</td> </tr> <tr> <td width="25%">1</td> <td width="25%">2</td> <td width="25%">3</td> <td width="25%">4</td> </tr> <tr> <td>1</td> <td>2</td> <td>3</td> <td>4</td> </tr> <tr> <td>1</td> <td>2</td> <td>3</td> <td>4</td> </tr> <tr> <td>1</td> <td>2</td> <td>3</td> <td>4</td> </tr> <tr> <td>1</td> <td>2</td> <td>3</td> <td>4</td> </tr> <tr> <td>1</td> <td>2</td> <td>3</td> <td>4</td> </tr> <tr> <td>1</td> <td>2</td> <td>3</td> <td>4</td> </tr> <tr> <td>1</td> <td>2</td> <td>3</td> <td>4</td> </tr> <tr> <td>1</td> <td>2</td> <td>3</td> <td>4</td> </tr> <tr> <td>1</td> <td>2</td> <td>3</td> <td>4</td> </tr> <tr> <td>1</td> <td>2</td> <td>3</td> <td>4</td> </tr> <tr> <td>1</td> <td>2</td> <td>3</td> <td>4</td> </tr> </table> </div> </td> </tr> </table>
This simple example appears to work but will fail in the real world because
the column widths in the 'header' table may well not match the column widths
in the 'body' table.
Anthony Jones wrote on 29 mei 2006 in
microsoft.public.inetserver.asp.general: </tr> <tr> <td>1</td> <td>2</td> <td>3</td> <td>4</td> </tr> </table> </div> </td> </tr> </table>
This simple example appears to work but will fail in the real world because the column widths in the 'header' table may well not match the column widths in the 'body' table.
use:
table.t {table-layout:fixed;}
However I till fail to see the ASP-significance.
--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
"Evertjan." <ex**************@interxnl.net> wrote in message
news:Xn********************@194.109.133.242... Anthony Jones wrote on 29 mei 2006 in microsoft.public.inetserver.asp.general:
</tr> <tr> <td>1</td> <td>2</td> <td>3</td> <td>4</td> </tr> </table> </div> </td> </tr> </table> This simple example appears to work but will fail in the real world because the column widths in the 'header' table may well not match the column widths in the 'body' table.
use:
table.t {table-layout:fixed;}
Yes the solution you've already given is the only reliable one I've found so
far.
However I till fail to see the ASP-significance.
Yes you've said that already. If I were a computer I would probably just
ignore the message or throw an error. However as a human I can see how
someone could think that the question was relevant (even though there are
even better matches for the question). -- Evertjan. The Netherlands. (Please change the x'es to dots in my emailaddress)
Hi,
There will not be any problem, Just use this logic in loop to create
columns dynamically, and as the width's I have used in %, so will be
adjusted automatically.
vicky wrote on 30 mei 2006 in microsoft.public.inetserver.asp.general: There will not be any problem, Just use this logic in loop to create columns dynamically, and as the width's I have used in %, so will be adjusted automatically.
Please quote what you are replying to.
If you want to post a followup via groups.google.com, don't use the
"Reply" link at the bottom of the article. Click on "show options" at the
top of the article, then click on the "Reply" at the bottom of the article
headers. <http://www.safalra.com/special/googlegroupsreply/>
--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
"vicky" <vi*********@yahoo.com> wrote in message
news:11*********************@u72g2000cwu.googlegro ups.com... Hi, There will not be any problem, Just use this logic in loop to create columns dynamically, and as the width's I have used in %, so will be adjusted automatically.
I'm not sure what it is that 'will not be a problem'. Fundamentally though
the column widths of 25% in your first header table and the 25% column
widths in second data table do not strictly have to be the same actual width
when resolved to pixels. Indeed with a pixel border your solution is
already slightly misalligned.
Anthony Jones wrote: "vicky" <vi*********@yahoo.com> wrote in message news:11*********************@u72g2000cwu.googlegro ups.com... Hi, There will not be any problem, Just use this logic in loop to create columns dynamically, and as the width's I have used in %, so will be adjusted automatically.
I'm not sure what it is that 'will not be a problem'. Fundamentally though the column widths of 25% in your first header table and the 25% column widths in second data table do not strictly have to be the same actual width when resolved to pixels. Indeed with a pixel border your solution is already slightly misalligned.
Not to mention what happens when the scrollbar appears ...
--
Microsoft MVP -- ASP/ASP.NET
Please reply to the newsgroup. The email account listed in my From
header is my spam trap, so I don't check it very often. You will get a
quicker response by posting to the newsgroup.
Ok, send me your code and I will get it work for u.
Anthony Jones wrote: "vicky" <vi*********@yahoo.com> wrote in message news:11*********************@u72g2000cwu.googlegro ups.com... Hi, There will not be any problem, Just use this logic in loop to create columns dynamically, and as the width's I have used in %, so will be adjusted automatically.
I'm not sure what it is that 'will not be a problem'. Fundamentally though the column widths of 25% in your first header table and the 25% column widths in second data table do not strictly have to be the same actual width when resolved to pixels. Indeed with a pixel border your solution is already slightly misalligned.
We weren't saying we couldn't do it ... just that it was not as easy as
you made it sound.
vicky wrote: Ok, send me your code and I will get it work for u. Anthony Jones wrote: "vicky" <vi*********@yahoo.com> wrote in message news:11*********************@u72g2000cwu.googlegro ups.com... Hi, There will not be any problem, Just use this logic in loop to create columns dynamically, and as the width's I have used in %, so will be adjusted automatically.
I'm not sure what it is that 'will not be a problem'. Fundamentally though the column widths of 25% in your first header table and the 25% column widths in second data table do not strictly have to be the same actual width when resolved to pixels. Indeed with a pixel border your solution is already slightly misalligned.
--
Microsoft MVP -- ASP/ASP.NET
Please reply to the newsgroup. The email account listed in my From
header is my spam trap, so I don't check it very often. You will get a
quicker response by posting to the newsgroup.
Hey, I was just trying to help, if my language made some
misunderstanding, then I am sorry.
Bob Barrows [MVP] wrote: We weren't saying we couldn't do it ... just that it was not as easy as you made it sound.
vicky wrote: Ok, send me your code and I will get it work for u. Anthony Jones wrote: "vicky" <vi*********@yahoo.com> wrote in message news:11*********************@u72g2000cwu.googlegro ups.com... Hi, There will not be any problem, Just use this logic in loop to create columns dynamically, and as the width's I have used in %, so will be adjusted automatically.
I'm not sure what it is that 'will not be a problem'. Fundamentally though the column widths of 25% in your first header table and the 25% column widths in second data table do not strictly have to be the same actual width when resolved to pixels. Indeed with a pixel border your solution is already slightly misalligned.
-- Microsoft MVP -- ASP/ASP.NET Please reply to the newsgroup. The email account listed in my From header is my spam trap, so I don't check it very often. You will get a quicker response by posting to the newsgroup. This thread has been closed and replies have been disabled. Please start a new discussion. Similar topics
by: Matt Kruse |
last post by:
This is a common requirement - "freeze panes" in a table, so that some
header rows and some columns on the left are frozen while the body content...
|
by: Ben |
last post by:
Is there any way to freeze the DataGrid headers so that
the headers are always viewable while srolling down?
Thanks in advance,
Ben!
|
by: Jack |
last post by:
I am displaying the contents of a dataset to my customer
as an excel spreadsheet and giving them the opportunity to
save the spreadsheet to their...
|
by: srinivas |
last post by:
Hi,
I am a asp programmer.I am displaying the db records in the
html pages in a web page.I have 500 columns and 1000 rows in that html...
|
by: Roger Withnell |
last post by:
I would like to freeze column and row headings on a webpage, simulating
freeze panes as in an Excel spreadsheet.
Don't seem to be able to do it...
|
by: jmalone |
last post by:
I have a python script that I need to freeze on AIX 5.1 (customer has
AIX and does not want to install Python). The python script is pretty
simple...
|
by: dmj07 |
last post by:
Hi All,
Like in Excel with freeze panes, I was wondering is it possible to freeze a HTML table at the top of a page so it is visible as you scroll...
|
by: Seth Williams |
last post by:
Is there a way to mimic the behavior in Excel, for a Gridview, to freeze the
column headers/titles, so that they show, as you scroll down the...
|
by: jrod11 |
last post by:
hi,
I found a jquery html table sorting code i have implemented. I am trying to figure out how to edit how many colums there are, but every time i...
|
by: Naresh1 |
last post by:
What is WebLogic Admin Training?
WebLogic Admin Training is a specialized program designed to equip individuals with the skills and knowledge...
|
by: antdb |
last post by:
Ⅰ. Advantage of AntDB: hyper-convergence + streaming processing engine
In the overall architecture, a new "hyper-convergence" concept was...
|
by: Matthew3360 |
last post by:
Hi, I have a python app that i want to be able to get variables from a php page on my webserver. My python app is on my computer. How would I make it...
|
by: AndyPSV |
last post by:
HOW CAN I CREATE AN AI with an .executable file that would suck all files in the folder and on my computerHOW CAN I CREATE AN AI with an .executable...
|
by: Arjunsri |
last post by:
I have a Redshift database that I need to use as an import data source. I have configured the DSN connection using the server, port, database, and...
|
by: WisdomUfot |
last post by:
It's an interesting question you've got about how Gmail hides the HTTP referrer when a link in an email is clicked. While I don't have the specific...
|
by: Matthew3360 |
last post by:
Hi,
I have been trying to connect to a local host using php curl. But I am finding it hard to do this. I am doing the curl get request from my web...
|
by: Carina712 |
last post by:
Setting background colors for Excel documents can help to improve the visual appeal of the document and make it easier to read and understand....
|
by: Rahul1995seven |
last post by:
Introduction:
In the realm of programming languages, Python has emerged as a powerhouse. With its simplicity, versatility, and robustness, Python...
| |