DataGrid with image in the Column Header

Ask a Question related to ASP.NET Data Grid Control, Design and Development.

  1. #1

    Default DataGrid with image in the Column Header

    Is it possible to have both an image and text as part of a Column Header in
    a DataGrid? Ideally, you could click on either sort the column. I have not
    been successful yet - if I add an image, the text does not show. I suppose
    I could create a .gif with each piece of text in it, but I was **really**
    hoping to avoid that.

    Suggestions?

    Thanks in advance.

    Mark


    Mark Guest

  2. Similar Questions and Discussions

    1. Changing an image in a datagrid column in the ItemDataBound event
      Hi, I have a datagrid that is bound to a datatable, I'm using TemplateColumns. The heading of two columns of the datagrid fire the...
    2. Datagrid wrappable column header text
      I may be missing something here, but could someone elaborate for me... Does the datagrid control provide the ability to wrap the column header...
    3. Image in header column (not replacing column header text)
      I have a sortable (asc/desc) datagrid and would like to add a small arrow icon (down/up) next to the column header text to improve the UI. Is this...
    4. DataGrid Column Header
      Hi All, The column header is getting an underline once the sort is enabled on that particular column. I want to have it in such a way that the...
    5. Datagrid and header with image
      Iam trying to implement sorting. I know how to display a button in the header of an datagrid. How can i display an image with down arrow and...
  3. #2

    Default Re: DataGrid with image in the Column Header

    Couldn't you overcome it if you'd use TemplateColumn and set the image and
    text (link?) to HeaderTemplate?

    In the HeaderTemplate set the link for example with LinkButton and set
    "Sort" as command name for it and then the sort argument you wish to use as
    command argument (of course DataGrid needs to be with AllowSorting="true").

    --
    Teemu Keiski
    MCP, Designer/Developer
    Mansoft tietotekniikka Oy
    [url]http://www.mansoft.fi[/url]

    AspInsiders Member, [url]www.aspinsiders.com[/url]
    ASP.NET Forums Moderator, [url]www.asp.net[/url]
    AspAlliance Columnist, [url]www.aspalliance.com[/url]


    "Mark" <field027_nospam_@umn.edu> wrote in message
    news:uzIsNOJTDHA.2120@TK2MSFTNGP11.phx.gbl...
    > Is it possible to have both an image and text as part of a Column Header
    in
    > a DataGrid? Ideally, you could click on either sort the column. I have
    not
    > been successful yet - if I add an image, the text does not show. I
    suppose
    > I could create a .gif with each piece of text in it, but I was **really**
    > hoping to avoid that.
    >
    > Suggestions?
    >
    > Thanks in advance.
    >
    > Mark
    >
    >

    Teemu Keiski Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139