S
Siva M
Assuming you are talking about ASP.NET DataGrid:
For the second part of your question: set the grid's AutoGenerateColumns
property to false and explictly list the columns using <Columns> element.
<asp
ataGrid runat="server" ID="dg">
<Columns>
</Columns>
</asp
ataGrid>
Hi,
Is there a way to specify data Grid column Style if its DataSource is an
IList(ArrayList), not a datatable? Can I selectively only show few columns,
not all of its properties?
Thanks!
For the second part of your question: set the grid's AutoGenerateColumns
property to false and explictly list the columns using <Columns> element.
<asp

<Columns>
</Columns>
</asp

Hi,
Is there a way to specify data Grid column Style if its DataSource is an
IList(ArrayList), not a datatable? Can I selectively only show few columns,
not all of its properties?
Thanks!