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

  1. #1

    Default Column Header

    I have a web form with a datagrid. The datagrid has 5 columns. In design
    mode each column has header text. I defined the header text, data source,
    etc in property builder. I have also verified my settings in html mode.
    Everything looks great.

    When I run the app one of the headers are not there but the column is there
    since the data gets rendered. I'm just missing my column header - column
    number 2.

    Any idea why I am having this problem?


    Demetri Guest

  2. Similar Questions and Discussions

    1. Header in a template column
      Hi, I have a checkbox in the header of a template column in a datagrid. How can I check during runtime that whether checkbox is checked or not?I...
    2. Two column header rows possible?
      We are currently creating output displaying 'Total' and 'Avg' information. Is it possible to add a row above, spanning multiple columns similar to...
    3. Column Header with Variable
      Dear gurus, Is it possible to specify the column header with variable? If I want to make headerText as Sales and Credit how do I do so? ...
    4. 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...
    5. 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...
  3. #2

    Default Re: Column Header

    post some code for making it easier to understand the problem.

    anyway... if ur using bound column in your code. chk whether u have
    the header text property right.
    <asp:BoundColumn HeaderText="Follow"

    or if ur using template column.. chk the headertemplate tag values.
    <asp:TemplateColumn ItemStyle-Width="2%">
    <HeaderTemplate>
    Status
    </HeaderTemplate>


    'Harish

    "Demetri" <takeyourspamelsewhere@nospam.com> wrote in message
    news:uvom168JEHA.2884@TK2MSFTNGP12.phx.gbl...
    > I have a web form with a datagrid. The datagrid has 5 columns. In design
    > mode each column has header text. I defined the header text, data source,
    > etc in property builder. I have also verified my settings in html mode.
    > Everything looks great.
    >
    > When I run the app one of the headers are not there but the column is
    there
    > since the data gets rendered. I'm just missing my column header - column
    > number 2.
    >
    > Any idea why I am having this problem?
    >
    >

    Harish Palaniappan 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