datagrid

  • Thread starter Thread starter schapopa
  • Start date Start date
S

schapopa

Hi,

Is there a way to have datagrid the way that header of that datagrid is
always visible, or in other words, header will not scroll together with
data in the datagrid.
Is that possible with datagrid?

Thank you
Schapopa
 
Hi.

No. You would have to work with layers, ilayers, etc. The grid in the
client-side is a simple <table>, wich has no scrolling nor nothing.
 
Easy...heck, taken for granted(!) with Firefox (as well as Mozilla,
Netscape, Camino), Opera, and Safari.

You just use something like the following... don't go copying this, you
need to know your margins too.

<table>
<tr id="header">
.....
</tr>
....
</table>

with this in your CSS...

#header {
position: fixed;
}

Everyone except the Intranet-focused IE can do this.
 
That is non standard and can only be used on an Intranet. It's not
appropriate for public web use.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top