Questions tagged [ext.net]

Ext.NET is an ASP.NET Component framework that integrates the Sencha Ext JS JavaScript framework. The framework allows the user interface to be built decoratively using ASP.NET tag based markup, code-behind or inline fluent syntax, rather than programmatically through JavaScript. Both ASP.NET WebForms and ASP.NET MVC are supported, including the Razor View Engine.

Ext.NET is an ASP.NET Component framework that integrates the Sencha Ext JS JavaScript framework. It allows the Ext JS user interface to be built declaratively using ASP.NET tag based markup, code-behind or inline fluent syntax, rather than programmatically through JavaScript.

Full source code samples available in the Ext.NET Examples Explorer. Online API docs at http://docs.ext.net/.

Rather than writing JavaScript code similar to:

var win = new Ext.Window({
    id     : 'win-id',
    width  : 400,
    height : 300,
    title  : 'Window Title',
    loader : { 
        url: 'http://www.lipsum.com/',
        autoLoad: true
    }
});

Markup such as the following can be written:

<ext:Window 
    ID="win-id" 
    runat="server" 
    width="400" 
    height="300" 
    title="Window Title">
    <Loader
        runat="server"
        Url="http://www.lipsum.com/"
        AutoLoad="true" />
</ext:Window>

Code-behind such as the following can be written:

var win = new Window {
    ID = "win-id",
    Width = 400,
    Height = 300,
    Title = "Window Title",
    Loader = new ComponentLoader()
    {
        Url = "http://www.lipsum.com/",
        AutoLoad = true
    }
};

RazorView such as the following can be written:

@(Html.X().Window()
    .ID("win-id")
    .Width(400)
    .Height(300)
    .Title("Window Title")
    .Loader(new ComponentLoader()
    {
        Url = "http://www.lipsum.com/",
        AutoLoad = true
    })
)
641 questions
2
votes
1 answer

Converting C# ExtNet DirectMethod implementation to VB.NET

How do I converst the below code to VB.NET? [DirectMethodProxyID(IDMode = DirectMethodProxyIDMode.Alias, Alias = "UC")] public partial class AliasID : System.Web.UI.UserControl { [DirectMethod] public void HelloUserControl() { …
Azri Jamil
  • 2,322
  • 2
  • 28
  • 36
2
votes
3 answers

How to execute JavaScript code after a Store event?

I have a store on my page:
ver
  • 827
  • 1
  • 8
  • 16
2
votes
1 answer

Ext.Net Fileupload and ASP.net Routing

I am using Ext.Net library along with ASP.net routing. The following page ~/Admin/Dashboard.aspx is routed as administrator/fr/dashboard/ or administrator/en/dashboard/ I am using Ext.Net FileUpload control. The following code (on a direct…
Nancy
  • 137
  • 2
  • 18
2
votes
2 answers

Custom Ext.Net TreeGrid nodes?

I'm gonna create an Ext.Net's TreeGrid with custom nodes. e.g : All of TreeGrid's nodes should have a textbox at the front of itself and users should write a number at it. See the below image : Also, I have to get each nodes' textbox values in code…
Mohammad Dayyan
  • 18,338
  • 35
  • 143
  • 207
2
votes
2 answers

Ext.net call a DirectMethod with select Handler in combobox

Ext Markup