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
-1
votes
1 answer

Ext is not definied in ext.net mvc

Currently, I am start to use ext.net mvc. So, everything is new for me. Please help me for it. It is showing ext is not defined. I think that it is missing some js file.I created Indext.cshtml and code as below: Thank you in advance. …
-1
votes
1 answer

Ext.net Calendar databind

its first time form to use ext.net calendar. i have dates in sql database. i try to bind calendarpanel with eventstore as dynamicly. but come blank calendar. ***Public Sub Calendar_Fill() Sql = "select distinct…
-1
votes
1 answer

Ext.Net: NumberField starts with number> 0

I would like this field kind NumberField starts with value 5 I tried using Numer = "5" and StartNumberField = "5". But without success. the code is below.
-1
votes
2 answers

ext call C# function from form

When I use the Button1_Click function is export to Excel but it's not working. protected void Button1_Click(object sender, DirectEventArgs e) { DBOperator db = new…
-1
votes
1 answer

calling another frame ASP.NET C# function with javascript

in my MainFrame.aspx i have create the panel with load ajaxFrm.aspx i the…
John Walker
  • 1,121
  • 4
  • 26
  • 68
-1
votes
1 answer

sqlmemebrship provider issue

I have a problem with,sqlmmebership sign out.My project consist of one main page,and other pages is loaded via ajax inside of this main page.I put a sign out button main page but when I click on it ,it happen nothing and after click ones again…
sakir
  • 3,391
  • 8
  • 34
  • 50
-2
votes
1 answer

How to highlight selected row of a gridpanel in Ext.net from c# code behind or javascript?

I am doing an EXT.NET project I want to highlight the selected row of the gridpanel that I have in my code even from code behind which is c# or from javascript function it doesn't matter Any Help?
user3439769
  • 33
  • 1
  • 7
-2
votes
1 answer

SQL System.NullReferenceException

I wrote a c# function to populate a ext.net store. It works fine in one application, but the same code does not work in another. I am getting a System.NullReferenceException on line 26. This is line 26: MyConnection.ConnectionString =…
starvator
  • 989
  • 1
  • 11
  • 26
-2
votes
1 answer

IE8 display differently on test server and localhost

I have built a website using ext.net and it displays normally in chrome, firefox and ie when it is on localhost. However, when I run the site on a local test server, it gets visually changed. Here it is running on localhost: And here on the test…
starvator
  • 989
  • 1
  • 11
  • 26
-2
votes
2 answers

Using a solution as a DLL to another (vb.net)

I don't know if there's a way to achieve this, but I have a solution with its references on a single form page (made with ext.net, by the way) and wanted to use it as a reference to another project. Is this possible? Edit: I think it was a poor…
Vic Wolk
  • 166
  • 1
  • 14
-2
votes
1 answer

Rendering the last column of Grid panel Ext.Net

1) In some cases the last column of Grid panel do not render correctly. Please take a look at the following image. What is the problem? Here are the markup codes:
Pars.Engineer
  • 57
  • 2
  • 8
-5
votes
1 answer

Compress PDF to Smaller Size(i.e 1MB to 300kb) in C#

i want to save pdf file to database if the pdf file is more than 5Mb then database becomes Heavy or Burden for more no.of files.so that i want to decrease the size of Pdf file as less as possible.... i tried the following code but not…
1 2 3
42
43