GridView - Show headers on empty data source. - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T01:15:22Zhttp://stackoverflow.com/feeds/question/354369http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/354369/gridview-show-headers-on-empty-data-source2GridView - Show headers on empty data source.Joshua Hudson2008-12-09T21:52:20Z2009-10-08T23:09:36Z
<p>In C# how do I still show the headers of a gridview, even with the data source is empty. </p>
<p>I am not auto generating the columns as they are all predefined. </p>
<p>Currently what I am doing is the following.</p>
<p>Get a DataTable back from a stored procedure, then set the DataSource of the gridview, and then call DataBind().</p>
<p>This works fine when I have data, but when no rows are returned then I just get a blank spot where the grid should be.</p>
http://stackoverflow.com/questions/354369/gridview-show-headers-on-empty-data-source/354391#3543912Answer by Joshua Hudson for GridView - Show headers on empty data source.Joshua Hudson2008-12-09T21:59:50Z2008-12-09T22:05:21Z<p>After posting this I did come up with a way that works. However, I don't feel it is the best way to handle this. Any suggestions on a better one?</p>
<pre><code>//Check to see if we get rows back, if we do just bind.
if (dtFunding.Rows.Count != 0)
{
grdFunding.DataSource = dtFunding;
grdFunding.DataBind();
}
else
{
//Other wise add a emtpy "New Row" to the datatable and then hide it after binding.
dtFunding.Rows.Add(dtFunding.NewRow());
grdFunding.DataSource = dtFunding;
grdFunding.DataBind();
grdFunding.Rows[0].Visible = false;
}
</code></pre>
http://stackoverflow.com/questions/354369/gridview-show-headers-on-empty-data-source/354409#3544090Answer by Victor for GridView - Show headers on empty data source.Victor2008-12-09T22:04:33Z2008-12-09T22:13:01Z<p>EDIT: nevermind</p>
<p>No this is not a bad solution. You could place this code on the on_Bind event for the grid.</p>
<p>or as the poster above said, you could create a header template and "hard code" your header text.</p>
http://stackoverflow.com/questions/354369/gridview-show-headers-on-empty-data-source/354420#3544203Answer by Liwen for GridView - Show headers on empty data source.Liwen2008-12-09T22:07:01Z2008-12-09T22:21:51Z<p>You can use HeaderTemplate property to setup the head programatically or use ListView instead if you are using .NET 3.5.</p>
<p>Personally, I prefer ListView over GridView and DetailsView if possible, it gives you more control over your html. </p>
http://stackoverflow.com/questions/354369/gridview-show-headers-on-empty-data-source/354497#3544971Answer by Aaron for GridView - Show headers on empty data source.Aaron2008-12-09T22:34:04Z2008-12-09T22:34:04Z<p>Use an EmptyDataTemplate like below. When your DataSource has no records, you will see your grid with headers, and the literal text or HTML that is inside the EmptyDataTemplate tags.</p>
<pre><code><asp:GridView ID="gvResults" AutoGenerateColumns="False" HeaderStyle-CssClass="tableheader" runat="server">
<EmptyDataTemplate>
<asp:Label ID="lblEmptySearch" runat="server">No Results Found</asp:Label>
</EmptyDataTemplate>
<Columns>
<asp:BoundField DataField="ItemId" HeaderText="ID" />
<asp:BoundField DataField="Description" HeaderText="Description" />
...
</Columns>
</asp:GridView>
</code></pre>
http://stackoverflow.com/questions/354369/gridview-show-headers-on-empty-data-source/866965#8669650Answer by almny for GridView - Show headers on empty data source.almny2009-05-15T04:20:31Z2009-05-15T04:20:31Z<p>this good code in codeproject.com
<a href="http://www.codeproject.com/KB/aspnet/Fix_empty_GridView_issue.aspx" rel="nofollow">http://www.codeproject.com/KB/aspnet/Fix_empty_GridView_issue.aspx</a></p>
<p>and it's solved this issue</p>
http://stackoverflow.com/questions/354369/gridview-show-headers-on-empty-data-source/1128033#11280332Answer by StriplingWarrior for GridView - Show headers on empty data source.StriplingWarrior2009-07-14T21:05:12Z2009-07-14T21:05:12Z<p>I was just working through this problem, and none of these solutions would work for me. I couldn't use the <code>EmptyDataTemplate</code> property because I was creating my <code>GridView</code> dynamically with custom fields which provide filters in the headers. I couldn't use the example almny posted because I'm using <code>ObjectDataSource</code>s instead of <code>DataSet</code> or <code>DataTable</code>. However, I found <a href="http://stackoverflow.com/questions/940234/show-header-footer-when-gridview-is-blank-vb-net/940356#940356">this answer</a> posted on another StackOverflow question, which links to <a href="http://blogs.claritycon.com/blogs/kevin%5Fmarshall/archive/2006/02/28/247.aspx" rel="nofollow">this elegant solution</a> that I was able to make work for my particular situation. It involves overriding the <code>CreateChildControls</code> method of the <code>GridView</code> to create the same header row that would have been created had there been real data. I thought it worth posting here, where it's likely to be found by other people in a similar fix.</p>
http://stackoverflow.com/questions/354369/gridview-show-headers-on-empty-data-source/1276971#1276971-2Answer by orange for GridView - Show headers on empty data source.orange2009-08-14T09:45:00Z2009-08-14T09:45:00Z<p>bingo its working!!
thanks</p>
http://stackoverflow.com/questions/354369/gridview-show-headers-on-empty-data-source/1381902#1381902-2Answer by Sara for GridView - Show headers on empty data source.Sara2009-09-04T23:10:50Z2009-09-04T23:10:50Z<p>hi,</p>
<p>how can I use the HeaderTemplate to show the header even when the GridView bind to an empty LinqDataSource !!!</p>
http://stackoverflow.com/questions/354369/gridview-show-headers-on-empty-data-source/1541026#15410261Answer by Waleed Mohamed for GridView - Show headers on empty data source.Waleed Mohamed2009-10-08T23:09:36Z2009-10-08T23:09:36Z<p>please check this post i think i get it :
<a href="http://ledomoon.blogspot.com/2009/04/show-grid-view-header-and-footer-when.html" rel="nofollow">http://ledomoon.blogspot.com/2009/04/show-grid-view-header-and-footer-when.html</a></p>