Ext JS 4 Roadmap

Page 3 of 5 FirstFirst 12345 LastLast
  1. #21
    Hello everybody,

    The official v1.0.0 Final Release is now available for download.

    Download
  2. #22
    Hello everybody,

    The Ext.Net v1.1 is now available for download.

    Download
  3. #23
    Quote Originally Posted by geoffrey.mcgill View Post
    As well, the Ext.NET v2 build (includes ExtJS 4) is progressing nicely. We should have a preview build available to Premium Members sometime shortly after v1.0 final release.
    Any Update on this?
  4. #24
    Any Update on Ext.NET V2?
  5. #25
    We are working on v2, unfortunately ExtJS 4.0.2 has many bugs yet therefore we have to wait 4.1 release, also some extensions are not updated yet by Sencha

    Many things works good in v2 already but we have some work yet

    We've added Razor support

    Example (Page)

    <!DOCTYPE html>
    <html>
    <head>
        <title>@ViewBag.Title</title>    
    </head>
    <body>    
        @Html.X().ResourceManager()
    
        @(Html.X().Panel()
            .Title("Panel1")
            .Width(400)
            .Height(400)
            .Icon(Icon.Add)
            .Layout(LayoutType.Accordion)
            .ItemsFromSection(this, "section1")        
            )
    </body>
    </html>
    Example (Section)

    @{ ViewBag.Title = "Index"; }
    
    @section section1{
        @(Html.X().Panel()
            .Title("Inner Panel 1")       
            .Height(150) 
            .Icon(Icon.Add)
            .Items(items => {
                items.Add(X.Builder.Button().Text("Button1").Icon(Icon.Anchor));
                items.Add(new Button { Text = "Button2", Icon = Icon.Anchor });
                items.Add(Html.X().Button().Text("Button3").Icon(Icon.Anchor));
            })
         )
    
         @(Html.X().Panel()
            .Title("Inner Panel 2")       
            .Height(150) 
            .Icon(Icon.Add)
            .Items(items => {
                items.Add(X.Builder.Button().Text("Button"));
            })
         )
    }
    Last edited by geoffrey.mcgill; Aug 25, 2011 at 7:06 PM.
  6. #26
    Amazing for version 2, we hope this version will be available soon!

    Keep us updated!

    Thanks

    Quote Originally Posted by Vladimir View Post
    We are working on v2, unfortunately ExtJS 4.0.2 has many bugs yet therefore we have to wait 4.1 release, also some extensions are not updated yet by Sencha

    Many things works good in v2 already but we have some work yet

    We've added Razor support

    Example (Page)

    <!DOCTYPE html>
    <html>
    <head>
        <title>@ViewBag.Title</title>    
    </head>
    <body>    
        @Html.X().ResourceManager()
    
        @(Html.X().Panel()
            .Title("Panel1")
            .Width(400)
            .Height(400)
            .Icon(Icon.Add)
            .Layout(LayoutType.Accordion)
            .ItemsFromSection(this, "section1")        
            )
    </body>
    </html>
    Example (Section)

    @{ ViewBag.Title = "Index"; }
    
    @section section1{
        @(Html.X().Panel()
            .Title("Inner Panel 1")       
            .Height(150) 
            .Icon(Icon.Add)
            .Items(items => {
                items.Add(X.Builder.Button().Text("Button1").Icon(Icon.Anchor));
                items.Add(new Button { Text = "Button2", Icon = Icon.Anchor });
                items.Add(Html.X().Button().Text("Button3").Icon(Icon.Anchor));
            })
         )
    
         @(Html.X().Panel()
            .Title("Inner Panel 2")       
            .Height(150) 
            .Icon(Icon.Add)
            .Items(items => {
                items.Add(X.Builder.Button().Text("Button"));
            })
         )
    }
  7. #27
    Hello,

    A version of the new Ext.NET v2 Examples Explorer has been published for review. More information available at

    http://forums.ext.net/showthread.php...ll=1#post72080
    Geoffrey McGill
    Founder
  8. #28
    Ext.NET Pro v2.0.0 Developer Preview 1 is now available, see

    http://forums.ext.net/showthread.php...review-Release
    Geoffrey McGill
    Founder
  9. #29

    EXT.NET 2.0 RAZOR and EXTJS 4.1 MVC Architecture with ASP.NET MVC 3

    Hi!

    Just a little clarification. I just want to know whether the upcoming final release of Ext.NET v 2.0 does include the ExtJS 4.1 MVC Architecture? I just noticed that in the Ext.NET Examples Explorer (Version 2.0 RC2) sample demos, no ASP.NET + ExtJs MVC architecture whatsoever is taken into account. Am i just missing something? Kindly explain. Thanks!

    Moreover, I have been evaluating the EXT.NET 2.0 Razor support for ASP.NET MVC3 Application for our web project. I went through the ASP.NET MVC Northwind Demo using EXT.NET, but sadly I couldn't inspect the code behind the sample. (Does this use the current ExtJS version 4.1 release?) The only code I saw was just a reference to an external site running the Demo App. Could you refer me to some online demos/sites/tutorials demonstrating the EXT.NET 2.0 Razor View Engine usage with ASP.NET MVC 3? All I wanted is to simply leverage the Razor support of EXT.NET 2.0 in order to speed up web development. Thanks in advance for the help! =)
  10. #30
    Quote Originally Posted by michael_aj View Post
    Hi!

    Just a little clarification. I just want to know whether the upcoming final release of Ext.NET v 2.0 does include the ExtJS 4.1 MVC Architecture? I just noticed that in the Ext.NET Examples Explorer (Version 2.0 RC2) sample demos, no ASP.NET + ExtJs MVC architecture whatsoever is taken into account. Am i just missing something? Kindly explain. Thanks!

    Moreover, I have been evaluating the EXT.NET 2.0 Razor support for ASP.NET MVC3 Application for our web project. I went through the ASP.NET MVC Northwind Demo using EXT.NET, but sadly I couldn't inspect the code behind the sample. (Does this use the current ExtJS version 4.1 release?) The only code I saw was just a reference to an external site running the Demo App. Could you refer me to some online demos/sites/tutorials demonstrating the EXT.NET 2.0 Razor View Engine usage with ASP.NET MVC 3? All I wanted is to simply leverage the Razor support of EXT.NET 2.0 in order to speed up web development. Thanks in advance for the help! =)
    Ext.NET 2.x will fully support ASP.NET MVC and the Razor View Engine. This is all working now, but we're a little behind on upgrading the Northwind MVC sample... it's still using the old 1.x MVC support.

    I should also mention, there is no separate Ext.Net.MVC.dll in v2.x, as MVC support is now 'baked' into the main Ext.Net.dll.

    Hope this helps.
    Geoffrey McGill
    Founder
Page 3 of 5 FirstFirst 12345 LastLast

Similar Threads

  1. About Roadmap
    By devil in forum Open Discussions
    Replies: 3
    Last Post: Dec 13, 2011, 10:26 AM
  2. Hi,What is the Ext.Net Future RoadMap
    By fancycloud in forum Open Discussions
    Replies: 0
    Last Post: Dec 20, 2010, 11:51 PM
  3. About 1.0 roadmap
    By pumpkin in forum Open Discussions
    Replies: 21
    Last Post: Jan 20, 2010, 6:23 PM
  4. Coolite roadmap
    By methode in forum Open Discussions
    Replies: 5
    Last Post: Jul 13, 2009, 2:54 PM
  5. Replies: 2
    Last Post: May 15, 2009, 9:10 PM

Tags for this Thread

Posting Permissions