ListView in ASP.NET/.NET 3.5

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Jimmy B

    ListView in ASP.NET/.NET 3.5

    Hello,

    Does new ListView Control in .NET 3.5 support directly fixed headers,
    anyone tested yet?

    Cheers


  • bruce barker

    #2
    Re: ListView in ASP.NET/.NET 3.5

    no builtin support, but as you can specify all the markup, you can
    (either fixed tables/ divs with overflow, or javascript)

    -- bruce (sqlwork.com)

    Jimmy B wrote:
    Hello,
    >
    Does new ListView Control in .NET 3.5 support directly fixed headers,
    anyone tested yet?
    >
    Cheers
    >
    >

    Comment

    • =?Utf-8?B?QW5nZWw=?=

      #3
      RE: ListView in ASP.NET/.NET 3.5


      Nope,

      It has LayoutTemplate and itemtemplate. You can build

      <asp:ListView ID="ListView1" runat="server">
      <LayoutTemplate >
      <table>
      <tr>
      <th>CategoryI D</th>
      <th>CategoryNam e</th>
      </tr>
      <tr</tr>
      </table>
      </LayoutTemplate>

      <ItemTemplate >

      </ItemTemplate>
      </asp:ListView>

      something like that.

      hope it helps,

      --
      aaa


      "Jimmy B" wrote:
      Hello,
      >
      Does new ListView Control in .NET 3.5 support directly fixed headers,
      anyone tested yet?
      >
      Cheers
      >
      >
      >

      Comment

      Working...