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
    })
)
643 questions
0
votes
1 answer

How to fire direct event in row editing in gridpanel in ext.net

i'm using VB.net with ext.net (version 1.6). i have a Gridpanel where i can double click on a row in order to edit it. I can successfully edit it, but i need a direct event to be called whenever i finish editing ( in order to update the row in my…
user206621
  • 3
  • 1
  • 2
0
votes
1 answer

Upgrade ext.net V1.x to ext.net V2.x

There are lot of changes in ext.net tool V1.2 and V2.2. I try to upgrade my application but not easy to find these changes. I use http://examples.ext.net/ http://docs.sencha.com/extjs/4.2.0/ Any other help available for that...
user2110717
  • 269
  • 4
  • 14
0
votes
0 answers

Export gridPanel to excel

I want to export my gridPanel to excel. I am using ext.net(Version 1.6) and vb.net code behind and i don't want to use any java script function. Please Take a look at this function.