Hi
I've installed the AJAX Beta 1. I have a web service that returns a List<CustomClass>. The list is currently a dummy list made up of 2 items.
The custom class is:
CustomClass
{
public string str1;
public string str2;
}
When I put a break point on the onComplete javascript callback function, I see both items in the debugger but I don't know how to get the count of items in the list. The list.Count is undefined. Count is available in C# so I thought it would map over to javascript.
Any ideas?