Questions tagged [extjs]

Sencha Ext JS is a JavaScript framework for building rich Internet applications (RIAs).

Sencha Ext JS

Sencha Ext JS provides a complete object-oriented framework for creating a desktop-like application that runs in a web browser or packaged as a native application. It manages object lifecycle, layouts, theming, data storage, Ajax communication and has a large library of component-driven UI widgets including charting capability.

Originally built as an add-on library for YUI, it has a modular architecture that developers can extend using JavaScript.

Resources

Notable Historical Events

  • 01-Jul-2015: With Ext JS 6, Sencha introduces a single framework for creating applications that run across all types of devices, from phones to tablets to desktops. This move combines the legacy Touch framework into the same project structure as Ext JS allowing for the sharing of resources.

  • 15-Apr-2014: Along with the release of version 5.0 Sencha Inc. officially dropped support for Internet Explorer versions 6 & 7 and only support 8 in "standards" mode. This marks a shift in favour of modern web-standards.

  • 15-Jun-2010: The merger of ExtJS with JQTouch and Raphaël was announced forming a new organisation called Sencha Inc. Ext JS continues to be available as a main product on the Sencha website together with Sencha Touch, Sencha GWT, Sencha Architect, Sencha Animator and Ext Core.

Version History

24873 questions
18
votes
4 answers

Is it possible to use ExtJS components in AngularJS?

I'm really enjoying learning to use AngularJS. Now I'm looking for components I can use with it. I've been looking at Angular-UI components but I'd like to know if it's possible to use the nice, supercharged components in ExtJS. Does anyone have…
Dr. Cool
  • 3,713
  • 3
  • 22
  • 26
17
votes
4 answers

ExtJS grab JSON result

I'm generating JSON response from PHP witch looks like this: { done:'1', options: [{ message:'Example message'},{message:'This is the 2nd example message'}]} I want to grab these results using ExtJS. This is what I have so far: Ext.Ajax.request({ …
Manny Calavera
  • 6,815
  • 20
  • 60
  • 85
17
votes
2 answers

ExtJS Infinite Scroll Grid with remote Filters and Sort

In ExtJS 4.1 beta 2 I managed to implement an infinite scroll grid with a remote store. I basically took an existing (fully operational) paging grid (with remote store, filtering and sorting) and then put in the appropriate configs for infinite…
egerardus
  • 11,316
  • 12
  • 80
  • 123
17
votes
1 answer

How to get the REST response message in ExtJs 4?

I'm building upon RESTFul Store example of ExtJs 4. I'd like my script to display errors provided by the REST server, when either Add or Delete request fails. I've managed to obtain the success status of a request (see the code below), but how do I…
Dae
  • 2,345
  • 2
  • 22
  • 34
17
votes
5 answers

How to auto select (show) the first value of combobox in Ext Js?

This is my combobox { xtype: 'combo', fieldLabel: LANG.LOGIN_LANG, id : 'lang', store: [ ['tr','Türkçe'], ['ru','Русский'], ['en','English'] ], mode: 'local', triggerAction: 'all', …
ilhan
  • 8,700
  • 35
  • 117
  • 201
17
votes
4 answers

How can I get make JavaScript code execution to wait until an AJAX request with script is loaded and executed?

In my application, I am using Ext.Ajax.request to load scripts which I execute with eval. The problem is that since it takes time for the AJAX request to complete, code that is executed afterward which needs variables which are in the script loaded…
Edward Tanguay
  • 189,012
  • 314
  • 712
  • 1,047
17
votes
1 answer

ExtJS open window with max height

I am trying to open a window (Ext.Window) by clicking on a button (Ext.Button). The problem is that this window must have size 80% width and 100% height of the screen of the user, that is it should cover all the vertical space. I am really not able…
Danilo
  • 2,676
  • 7
  • 32
  • 36
17
votes
1 answer

Line Chart with multi colored segments

I am using Ext 5 and would like to color segments in a line chart based on the values. Show line in green color if value greater than the target otherwise red. Is there any way to change the color of a line segment in Ext line chart based on its…
Gilsha
  • 14,431
  • 3
  • 32
  • 47
17
votes
5 answers

Extjs - How to show combobox in Grid column

I have a gridpanel include date and combo column jsfiddle But I don't want click to show my combo. I want show my combo without click, not hide inside cell like and the same for date column like I think chage to clicksToEdit: 0 but…
DeLe
  • 2,442
  • 19
  • 88
  • 133
17
votes
2 answers

Overriding Extjs classes and invoking callParent

I have a few months of experience developing Extjs web application. I ran into this problem: When I override a class, I modified the method and followed the previous implementation and invoke callParent(). The overriding part works but the…
Seng Zhe
  • 613
  • 1
  • 11
  • 21
17
votes
1 answer

Render Ext.application in a div

I am trying to run an ExtJS4 Ext.application inside our existing website template. We have a div #content, into which I want to place the application for development. How do I render the application into this area, rather than replacing the existing…
user2170010
  • 185
  • 1
  • 8
17
votes
3 answers

why is this.callParent(arguments); called at the beginning of the constructors in ExtJS?

I noticed that in a lot of the programs I have been modifying recently they always call the parent arguments of the current object. I know that this is needed but don't have a solid understanding as to why this is a common practice. Any wisdom out…
JaeGeeTee
  • 513
  • 1
  • 6
  • 23
17
votes
9 answers

Ext.button click() method

ExtJS 4.1. Is there something like Ext.button.click(); method on Ext.button class? Is it possible to programmically "click" a button with one method?
s.webbandit
  • 16,332
  • 16
  • 58
  • 82
17
votes
2 answers

How to change the default heading of 'alert'

I am trying to use the alert method, so the native iOS like alertView will popout. Everything works fine, and the alert gets displayed. But the Heading of the Alert is always index.html. How can i edit the heading of the alert method
user1315906
  • 3,374
  • 8
  • 30
  • 43
16
votes
2 answers

how to swtich extjs themes?

I noticed that extjs comes with 3 to 4 default themes/skins . How can I select or swtich between the themes? I want to change the blue to select the grey themes or something else. Thanks
user244394
  • 13,168
  • 24
  • 81
  • 138