Ext.NET Mobile Final Now Available
Ext.NET Mobile is now available.
Ext.NET Mobile is an ASP.NET Web Forms and MVC component framework for building Phone and Tablet specific mobile web applications.
Ext.NET Mobile can be installed into an ASP.NET Web Forms or MVC application using either of the following NuGet commands. The -pre
flag is no more required.
ASP.NET Web Forms
Install-Package Ext.NET.Mobile
ASP.NET MVC
Install-Package Ext.NET.Mobile.MVC
A .zip package is also available to download.
Beta Announcement
If you are new to Ext.NET Mobile, we would recommend reading the blog post announcing the Beta release. The beta announcement blog post provides a good overview of the key details on Ext.NET Mobile framework.
Recent Improvements
Since the Beta release, there have been no big changes in the framework. We have been focused on reviewing feedback from the community, fixing any defects that were discovered, and polishing the framework according to that feedback.
Several community members pointed out minor differences in the behaviour between Ext.NET and Ext.NET Mobile. In order to ensure Ext.NET Mobile felt immediately familiar, one of the primary goals of Ext.NET Mobile was to keep as much of the API and functionality between the frameworks as similar as we could. The feedback from the community helped us with this goal.
For example, in Ext.NET Mobile the Grid Column required an explicit Column Width
setting, which was different behaviour than Ext.NET. It was not a problem for us to also set up a default Width
on a Column in Ext.NET Mobile, thereby harmonizing the expected results across both frameworks.
Another example is related to a Grid Column again. Within Ext.NET, just setting a Column Editor
config was enough to trigger the Column to be editable, although in Ext.NET Mobile setting Editable="true"
was also required (see forum thread). No more. It is now the same as Ext.NET.
// Old
<ext:Column
runat=”server”
Text=”Name”
DataIndex=”Name”
Width=”100″
Editable=”true”>
<Editor>
<ext:TextField runat=”server” />
</Editor>
</ext:Column>
// New
<ext:Column
runat=”server”
Text=”Name”
DataIndex=”Name”>
<Editor>
<ext:TextField runat=”server” />
</Editor>
</ext:Column>
Each of these improvements are tiny, but there were many others, and taken together they will make a big difference in efficiency for Ext.NET developers.
Razor Helpers and MVC Examples
Razor helpers are an essential part of ASP.NET MVC support in Ext.NET Mobile. There were also improvements made here since the Beta release.
One set of improvements regarding a cumbersome setup of a Store configuration was triggered by community feedback. For example, the following sample demonstrates the configuration before we optimized the API:
// Existing
Html.X().NestedList.Store(c => c.Add(Html.X().TreeStore()));
We introduced a new Razor syntax helper for adding a Store instance directly:
// Revised
Html.X().NestedList.Store(Html.X().TreeStore());
Yet another set of MVC support improvements came from our work on the new MVC examples.
At the time of the Beta release, the Ext.NET Mobile MVC Examples Explorers included only a handful of examples. Our goal is to mirror the samples in both the Web Forms and MVC Mobile Examples Explorers, and since the Beta release we have added many more MVC examples.
Working with the MVC Examples Explorer was a good opportunity to improve and polish MVC support by adding new convenient Razor helpers and fixing several defects that were uncovered in the process.
Free Upgrade
Ext.NET Mobile is FREE for all Ext.NET 4 Enterprise license holders.
If you are licensed for Ext.NET 4, you are now also automatically licensed to use Ext.NET Mobile and to deploy applications using the framework. Your Ext.NET 4 license key will unlock both Ext.NET and Ext.NET Mobile.
Thanks For Your Feedback
We want to send out a huge thanks to all the early adopters of Ext.NET Mobile. The feedback you provided was extremely helpful in preparing the final release. Thanks!
Please let us know if you discover any issues, or have suggestions for improving the framework. Technical support questions are best asked in the forums where new Ext.NET Mobile Premium and Community Help forums have been added.
Any questions or comments? Please feel free to contact us at hello@ext.net, or via Twitter.