Datagrid Navigation

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi All,
I would like the datagrid to start off displaying the table data without
first forcing the user to use the expanders to get to the table. If I set the
AllowNavigation to false, then the grid don't show any data at all. Is there
a way to setup the grid to show the data at startup, or upon loading of the
grid? Thanks for the help.
Michael Lee
 
Hi Again,
I forgot to mention that the dataset was filled by a stored procedure and
the SP retrieves data from two tables(joined) if that make any difference.
Thanks for any info.
Michael
 
Where have you bound the Datagrid to the datasource (Code, or the IDE in
Design Mode?)

It sounds like the Datagrid is bound one level higher than it should be, Ie.
to the Dataset, rather than the required table within the dataset. Check
your databinding and make sure you are bound to the correct object
(dataset.table, not just the dataset)
 
Back
Top