Niner since 2009
/// /// /// Sys.Application.add_init(function() { $create(Sys.UI.DataGrid, { alternateRowClass: "odd", columnExpressions: ["Title", "FirstName", "MiddleName", "LastName", "Suffix"], dataProvider: $create(Sys.Data.AdoNetDataContext, { serviceUri: "AdventureWorks.svc" }), itemPlaceholder: $get("customer-placeholder"), fetchOperation: "Customers", fetchParameters: { $top: 20, $orderby: "FirstName" } }, null, null, $get("customer-list")); });
I am not sure if this say anything but it might indicate that the dataview has been changed a little. Try typing this into the javascript editor to gain some insight. I got this from the samples download on msdn. http://msdn.microsoft.com/en-us/library/bb514232(VS.100).aspx">http://msdn.microsoft.com/en-us/library/bb514232(VS.100).aspx
var dv = new Sys.UI.DataView();
when you type dv. the intellisense should give you some more information.
fetchOperation: "Customers", fetchParameters: { $top: 20, $orderby: "FirstName" } ... would be my first guess.
Here is a list of Channel 9 staff members.
10-4 Episode 8: Pure Client-Side Development with ASP.NET AJAX 4.0
Jul 01, 2009 at 12:49 AM/// /// /// Sys.Application.add_init(function() { $create(Sys.UI.DataGrid, { alternateRowClass: "odd", columnExpressions: ["Title", "FirstName", "MiddleName", "LastName", "Suffix"], dataProvider: $create(Sys.Data.AdoNetDataContext, { serviceUri: "AdventureWorks.svc" }), itemPlaceholder: $get("customer-placeholder"), fetchOperation: "Customers", fetchParameters: { $top: 20, $orderby: "FirstName" } }, null, null, $get("customer-list")); });I am not sure if this say anything but it might indicate that the dataview has been changed a little. Try typing this into the javascript editor to gain some insight. I got this from the samples download on msdn. http://msdn.microsoft.com/en-us/library/bb514232(VS.100).aspx">http://msdn.microsoft.com/en-us/library/bb514232(VS.100).aspx
var dv = new Sys.UI.DataView();
when you type dv. the intellisense should give you some more information.
fetchOperation: "Customers",
fetchParameters: { $top: 20, $orderby: "FirstName" }
... would be my first guess.