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
2 answers

Using entitydatasource with editable gridpanel

i am new at ext.net. i am trying to make an editable grid with using entitydatasource Here is code:
Mehmet
  • 1
  • 4
0
votes
1 answer

Javascript in EXT

I am using the ext.net framework to develop a project at work. But I have encountered a problem with jQuery's (document).ready function. Specifically when loading the page the jQuery never seems to be executed. $(document).ready(function () { …
0
votes
1 answer

Dynamically set height of a panel which contains store in Ext.Net

I want to set the height of a panel which contains store in Ext.Net dynamically based on the number of rows. I am having the following code:-
user1376575
  • 41
  • 2
  • 8
0
votes
1 answer

How getValue except from attribut ID in EXT.Net Razor Engine?

code in listeners bellow get value from ID #{CheckAll}, I want get value from other attribute. @Html.X().ResourceManager() @Html.X().Checkbox() .Name("CheckAll") .BoxLabel("CheckAll") .ID("CheckAll") …
pajar
  • 43
  • 2
  • 7
0
votes
1 answer

Ext.net How to set total page for pagingtoolbar?

i have a dataset, in dataset i have two function : GetDataMenuPagin(@PageIndex, @PageSize) SP_GetCountMenuDataPagin() I get data from a table named "Menu" with 1500 record. I set page size is 10, so total page must be 150 page. But how i can set…
Thanh Le
  • 235
  • 1
  • 3
  • 15
0
votes
2 answers

display filter record else all record in crystal report

i want that when page loads the report should display all records. Now when I want to show the filter record by datewise(group field) ie to show all records without filter else show record/s with filter. My code is as below when I want to filter…
vaishali
  • 153
  • 1
  • 7
  • 19
0
votes
2 answers

How to hide Gridpanel GroupCommand in Ext.Net

I am working with Ext.Net1.0. and I am working with Grid Panel with grouping In that I had set Group Command I want to hide Group Command..
Smily
  • 2,646
  • 4
  • 23
  • 31
0
votes
1 answer

Ajax UpdatePanel does not working with Ext.Net ViewPort. Please suggest what can be done for this issue?

Update Panel does not working when i use and test ext.net viewport web control. Interesting, Update Panel is working fine with other provided web control of Ext.net. Please let me know how to fix this? Sample code
0
votes
1 answer

'Communication failure' in ext.net

I am exporting the grid data to the PDF file by using iTextSharp. I am searching the billno and fetched data is relating on the grid and control( in ext.net). Searching can be in 3 ways: 1. By inserting billno and pressing enter in combo…
vaishali
  • 153
  • 1
  • 7
  • 19
0
votes
1 answer

not able to insert image on cell of table when converting griddata to PDF file using iTextsharp in Ext.net

I am using iTextSharp to export Griddata to PDF. I am not able to insert .jpg image to a cell of a table. I want to export griddata(billdata) to PDF I can insert text on a cell but not able to insert image. My code is as below protected void…
vaishali
  • 153
  • 1
  • 7
  • 19
0
votes
1 answer

how to set width and height of Viewport in ext.Net

I am working with Ext.Net1.0. and I am working with ext:Desktop and ext:Viewport I want to fit my page on the screen, whatever resolution is there and not allowing scaling. How to fit my page in Ext.Net?? My Desktop and view look like above…
Smily
  • 2,646
  • 4
  • 23
  • 31
0
votes
1 answer

Loading another Page in Content Page is not Working in ASP.NET with EXT.NET

I am working with Asp.Net 3.5 and Ext.Net 1.0. I had created One Master Page(Site.master) and one content page(User.aspx) in my Application and I am loading one page(UserManager.aspx) into content page If I put normal HTML tags into…
Smily
  • 2,646
  • 4
  • 23
  • 31
0
votes
1 answer

How to export grid data to PDF in ext.net

I want to know how to export grid data to PDF in ext.net. How can i do that? I have seen many sites but all is related to asp.net. I didn't get any content related to ext.net.
vaishali
  • 153
  • 1
  • 7
  • 19
0
votes
2 answers

ext.NET closing dynamic window

In ext.net I created a window dynamically and I want when user click a specific button, close that window. Here is my code.parent window define this: Window win= new Window(); win.ID = "window1"; win.Title = ""; win.Height = 400; …
mshirdel
  • 88
  • 1
  • 13
-1
votes
1 answer

Password visible in ext.net user control

User control (ascx) with a password input. Right-click, inspect - the value is visible. This doesn't happen if the password input is in an aspx. Hmm, it seems I have to add some ramblings here, since the platform won't allow me to post this thread…
Edgar
  • 473
  • 1
  • 5
  • 19
1 2 3
42
43