I've followed Phil Haack's demo of jQuery Grid successfully in an mvc 2 rc project without areas. Now I'm trying to implement the same code in an areas project but the data is not being passed to the grid.
The jquery grid url property from the demo appears to be in the format of:
url:'/{controller}/{method}/'
I'm attempting to include the area in the url property without success:
url:'/{area}/{controller}/{method}/'
How do I retrieve the data from a method in controller using areas?