Hello,
Does new ListView Control in .NET 3.5 support directly fixed headers,
anyone tested yet?
Cheers
bruce barker - 11 Feb 2008 01:16 GMT
no builtin support, but as you can specify all the markup, you can
(either fixed tables/ divs with overflow, or javascript)
-- bruce (sqlwork.com)
> Hello,
>
> Does new ListView Control in .NET 3.5 support directly fixed headers,
> anyone tested yet?
>
> Cheers
Angel - 11 Feb 2008 05:32 GMT
Nope,
It has LayoutTemplate and itemtemplate. You can build
<asp:ListView ID="ListView1" runat="server">
<LayoutTemplate>
<table>
<tr>
<th>CategoryID</th>
<th>CategoryName</th>
</tr>
<tr> </tr>
</table>
</LayoutTemplate>
<ItemTemplate>
</ItemTemplate>
</asp:ListView>
something like that.
hope it helps,

Signature
aaa
> Hello,
>
> Does new ListView Control in .NET 3.5 support directly fixed headers,
> anyone tested yet?
>
> Cheers