Is there a short way to make a FooterTemplate (in a GridView) always visible, even when DataSource is empty?

link|improve this question

Why you want to acheive this? – Muhammad Akhtar Jun 15 '09 at 8:02
Please take a look at what i commented to below, I explained what I need it for. – Shimmy Jun 15 '09 at 13:34
feedback

1 Answer

up vote 2 down vote accepted

If you want it to always display, regardless of content, can't you just put the footer html outside the GridView, instead of in the FooterTemplate?

If that's not an option for some reason, then you can either add an null row to your data source if it's empty, or subclass the GridView & override the default behaviour.

Those are the only options I'm aware of (although its been a while since the last time I used a GridView).

link|improve this answer
I don't really care doing it with with Html, the problem is I want the columns to fit the width of the GridView columns. I want it to show some summarization when data exist, and a insert item (which i implemented in the footer, know what i mean?) when button "New" is pressed on the item template, or show the footer always. in other words: *is there a way to evoke showing the footer (when no data)? *what is actually this null data row thing, didn't getcha (im using EntityDataSource, i think will be more complicated or impossible at all). Thanks buddy. – Shimmy Jun 15 '09 at 13:32
I don't want to use an empty row, I don't mind subclassing the GridView but no dummy data. 've u got somtn'? – Shimmy Jun 16 '09 at 6:58
The 2nd link I included (mattberseth.com/blog/2007/07/…) has some example code to allow you to have a grid with a ShowFooterWhenEmpty property. – Alconja Jun 16 '09 at 7:27
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.