What 2 lines of code do you write to obtain a smooth scrolling asynchronous stealth paging Silverlight datagrid showing the Netflix catalog?
NetflixCatalog.NetflixCatalog catalog = new NetflixCatalog.NetflixCatalog( new Uri("htttp://odata.netflix.com/Catalog/",UriKind.Absolute ));
this.dataGrid.ItemsSource = catalog.Titles.IncludeTotalCount();
...and a tiny bit of XAML to enable the filter row etc. Makes use of WCF Data Services.
Odi 1 year ago
It is a Silverlight 4 control, BTW.
What 2 lines of code do you write to obtain a smooth scrolling asynchronous stealth paging Silverlight datagrid showing the Netflix catalog?
NetflixCatalog.NetflixCatalog catalog = new NetflixCatalog.NetflixCatalog( new Uri("htttp://odata.netflix.com/Catalog/",UriKind.Absolute ));
this.dataGrid.ItemsSource = catalog.Titles.IncludeTotalCount();
...and a tiny bit of XAML to enable the filter row etc. Makes use of WCF Data Services.
Odi 1 year ago
It is a Silverlight 4 control, BTW.
Odi 1 year ago