Ask a Question related to ASP.NET Data Grid Control, Design and Development.
-
Atif Jalal #1
Datagrid not diplaying header text
I am trying have a datgrid which always displays the column header
text, even though the datareader to which it is bound is empty.
I have a datagrid on my page with data source bound to datareader. The
datagrid does not display the header text when the datareader returns
zero records.
Atif Jalal Guest
-
Wrap Header text in Datagrid (Flex 1.5)
How do I wrap header text in a datagrid in Flex 1.5?? -
Datagrid Header Disappearing Text
When my stand alone flash app is being resized, the two datagrids' header texts disappears and reappears. I've changed fonts, embedded fonts,... -
How to get head text in datagrid header renderer
Hi, I will create a checkbox in one of datagrid's header. And I write a header renderer. Now I want to use the data grid's column header text as... -
Different header and text alignment in winform datagrid ??
How can I have following ? Different header and text alignment in winform datagrid I want to show column center aligned and text right... -
Add header text dynamically in a datagrid with templatecolumns?
Hello, I have a dg, which uses templatecolumns. Now I would like to assing the header text of these columns, with the names I have in my... -
Rajesh Tiwari #2
Re: Datagrid not diplaying header text
use boundcolumn
it will solve ur problem
e.g.
<asp:datagrid id=grd runat=server Border=1 ShowFooter="false"
Font-Color="Green"
AutoGenerateColumns="true"<columns>>
<asp:BoundColumn HeaderText="id" DataField="fname" runat=server/>
</columns>
</asp:datagrid>
Rajesh
*** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
Don't just participate in USENET...get rewarded for it!
Rajesh Tiwari Guest



Reply With Quote

