I have a grid that I am using to display search results in. This is my first project using a RadGrid. I'm using VB.Net in Visual Studio 2008.
I created the 3 columns ahead of time and then when the search is run I fill a DataSet with the SQL query results, set the DataSet as the "DataSource" and then call "Rebind" on the grid.
The grid properly redraws and shows me that there were 3 rows of results returned, but each cell of the table simply shows "System.Data.DataRowView" instead of the actual values.
Is there some property I'm missing somewhere that is causing the table to not show me the actual data in my DataSet?
I created the 3 columns ahead of time and then when the search is run I fill a DataSet with the SQL query results, set the DataSet as the "DataSource" and then call "Rebind" on the grid.
The grid properly redraws and shows me that there were 3 rows of results returned, but each cell of the table simply shows "System.Data.DataRowView" instead of the actual values.
Is there some property I'm missing somewhere that is causing the table to not show me the actual data in my DataSet?