mart
mart

Reputation: 224

MVC3 .Net + ExtJs 4

I need to know if it is possible to work with ExtJS 4 components like Grid, Combobox, etc., in the Razor Views of MVC 3 .Net. If it is possible, I'd also like to know where I can read a manual/tutorial or some documentation on this.

Upvotes: 1

Views: 5637

Answers (3)

The One
The One

Reputation: 56

Here's a tutorial on ExtJS4 Combo & ASP.NET MVC3:

http://whatisextjs.com/extjs-4-tutorial/extjs4-combo-asp-net-mvc3#more-452

Upvotes: 4

Jom
Jom

Reputation: 1897

You can use extjs grid in mvc. mvc - grid sample http://nraykov.wordpress.com/2009/11/29/using-ext-js-grid-with-asp-net-mvc/

check this also Returning data from ASP.net to an ExtJS Grid

Upvotes: 0

Leon Cullens
Leon Cullens

Reputation: 12496

Sure it's possible, the Razor views will just generate normal HTML pages, so anything you can do in normal HTML, you can do in ASP.NET MVC.

P.s. check out Ext.NET, a ExtJs library for .NET. Perhaps you find it useful: http://www.ext.net/.

Upvotes: 1

Related Questions