-
12 May 2011 9:53 AM #321
I don't know. I haven't tried yet. No time.
Eugene
Ext.Direct for ASP.NET MVC
-
17 May 2011 4:11 AM #322
I have a working copy of my project using ExtJs 4.0 and Mvc3.0 using Ext.Direct. Seems to work very well, although I have not yet completed this project. But it is worthwhile to give it a try. You have to check out the Mvc3Demo project on the svn server of Ext.Direct.
-
19 May 2011 9:26 PM #323
For me it means that Ext.Direct passes method arguments in an array and not in object literal - that's perfectly OK, I don't want to pass arguments by name. I just want to pass more complex object structures as method arguments, and there's nothing in spec that would suggest it's not possible (actually, handling just simple value types would defeat the whole purpose of Json-RPC).
And it actually does handle complex Json on client side - see my posts above and the Json string - it is delivered to the server, but the server-side code does not deserialize it properly. I think it could be greatly improved if your code used the type information from method parameters to deserialize Json to proper data types, not just System.Object which is useless.
-
7 Jun 2011 8:38 AM #324
Looking forward to your findings.
-
5 Aug 2011 8:40 AM #325
support for Ext JS 4 + ASP.NET MVC 3 + Pooling Provider examples
support for Ext JS 4 + ASP.NET MVC 3 + Pooling Provider examples
Eugene
I know you probably busy, but if you could comment on when (or if) will the project be ready for use with Sencha latest (Ext JS 4) and ASP.NET MVC3?
Also, if there are any plans to support Areas and sample with Pooling Provider (wiki briefly mentions to use controller extension???)
much appreciated
z..
-
5 Aug 2011 9:30 AM #326
zam6ak, you can get the source from the trunk and compile it against MVC3 yourself. It should be fine.
In Ext 4 Ext Direct specs haven't changed much since Ext 3, except maybe named arguments, but then again, my implementation allows a developer to pass object literals that are mapped to objects on the server. In my opinion it is better.
Regarding Areas, I never really bothered to learn them
so I can't really comment on why my implementation doesn't work with Areas. I'll look into it when I have time.Eugene
Ext.Direct for ASP.NET MVC
-
10 Oct 2011 3:23 PM #327
I'm just beginning to evaluate ExtJS/Ext.Direct. Why would I use Ext.Direct for ASP.NET MVC instead of just returning a JsonResult from my ASP.NET MVC controller action?
-
29 Oct 2011 12:10 PM #328
How is validation being done on the demo application?
How is validation being done on the demo application?
I have downloaded the demo app from http://code.google.com/p/ext-direct-...0.zip&can=2&q=
Then in the TestController, I've changed the code to
If you run the code, Model State is not valid. My question is how is the "Required" validation on properties such as Gender, Birthday being implemented in this demo application? I've tried to look for evidence of DataAnnotation, xval, Fluent Validation but I was unable to find that out. So, I'm stumped here.Code:public ActionResult SaveForm(Person p) { if (ModelState.IsValid) { return this.Direct(new { success = true, data = p }, new StringEnumConverter()); } return null; }
Regards,
David
-
8 Dec 2011 3:04 AM #329
Reg. ASP .NET MVC3 with Ext.net
Reg. ASP .NET MVC3 with Ext.net
HI,
Intresting post.. This project can not be opend in VS 201 webdeveloper Express edition, It is opening a migration. It also gives migration wizard and It still unable to open the project.
Appreciate your updated version for VS 2010
Thank & Regards
Dhana
-
28 Feb 2012 9:27 AM #330
Any updates with this excellent library?


Reply With Quote