GridView - Show headers on empty data source. - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T01:15:22Z http://stackoverflow.com/feeds/question/354369 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/354369/gridview-show-headers-on-empty-data-source 2 GridView - Show headers on empty data source. Joshua Hudson 2008-12-09T21:52:20Z 2009-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#354391 2 Answer by Joshua Hudson for GridView - Show headers on empty data source. Joshua Hudson 2008-12-09T21:59:50Z 2008-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#354409 0 Answer by Victor for GridView - Show headers on empty data source. Victor 2008-12-09T22:04:33Z 2008-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#354420 3 Answer by Liwen for GridView - Show headers on empty data source. Liwen 2008-12-09T22:07:01Z 2008-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#354497 1 Answer by Aaron for GridView - Show headers on empty data source. Aaron 2008-12-09T22:34:04Z 2008-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>&lt;asp:GridView ID="gvResults" AutoGenerateColumns="False" HeaderStyle-CssClass="tableheader" runat="server"&gt; &lt;EmptyDataTemplate&gt; &lt;asp:Label ID="lblEmptySearch" runat="server"&gt;No Results Found&lt;/asp:Label&gt; &lt;/EmptyDataTemplate&gt; &lt;Columns&gt; &lt;asp:BoundField DataField="ItemId" HeaderText="ID" /&gt; &lt;asp:BoundField DataField="Description" HeaderText="Description" /&gt; ... &lt;/Columns&gt; &lt;/asp:GridView&gt; </code></pre> http://stackoverflow.com/questions/354369/gridview-show-headers-on-empty-data-source/866965#866965 0 Answer by almny for GridView - Show headers on empty data source. almny 2009-05-15T04:20:31Z 2009-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#1128033 2 Answer by StriplingWarrior for GridView - Show headers on empty data source. StriplingWarrior 2009-07-14T21:05:12Z 2009-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 -2 Answer by orange for GridView - Show headers on empty data source. orange 2009-08-14T09:45:00Z 2009-08-14T09:45:00Z <p>bingo its working!! thanks</p> http://stackoverflow.com/questions/354369/gridview-show-headers-on-empty-data-source/1381902#1381902 -2 Answer by Sara for GridView - Show headers on empty data source. Sara 2009-09-04T23:10:50Z 2009-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#1541026 1 Answer by Waleed Mohamed for GridView - Show headers on empty data source. Waleed Mohamed 2009-10-08T23:09:36Z 2009-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>