Hi,
I am new to using the EO grid object.
I have a query that I have been displaying in the VS2005 "gridview" object that I would like to display in the EO "grid" object. I am hoping that EO will provide slicker end user features (scroll bars/sorting/etc) than the VS 2005 gridview can provide.
In order to assess this I need to get the grid object to return the data from this query:
select
DISTINCT(PROGRAM_TITLE) as [Program name],
PROGRAM_CATEGORY_NAME as [Category],
RIGHT(CONVERT(CHAR(8), DATEADD(SECOND, DEFAULTDURATION, '00:00'), 108), 7) AS [Duration],
live_selected_ind AS [Live],
record_selected_ind AS [Rec]
WHERE
station_id = 'tim'
ORDER BY program_title ASC
I am unclear as to how I set up the datasource link that would be needed for EO's grid.
If you could point me to a good example of getting data from SQL server and displaying the results in "grid" it would be great.
Thankyou.