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
40
votes
8 answers

Listener for "date change" in FullCalendar?

Is there any way to attach a listener to FullCalendar that will be fired whenever the currently viewed date is changed, i.e. if you are in Month view, going to the next month would fire the event passing the Date for the first day of the month, and…
Bill Dami
  • 3,205
  • 5
  • 51
  • 70
39
votes
15 answers

How to retrieve JSON Data Array from ExtJS Store

Is there a method allowing me to return my stored data in an ExtJS Grid Panel exactly the way I loaded it using: var data = ["value1", "value2"] Store.loadData(data); I would like to have a user option to reload the Grid, but changes to the store…
sctskw
  • 1,588
  • 1
  • 12
  • 14
39
votes
4 answers

How to display binary data as image - extjs 4

Here is the binary for a valid .JPEG image. http://pastebin.ca/raw/2314500 I have tried to use Python to save this binary data into an image. How can I convert this data to a viewable .JPEG image with extjs 4? I tried this, but it doesn't…
user2040602
37
votes
8 answers

How can I automatically compress and minimize JavaScript files in an ASP.NET MVC app?

So I have an ASP.NET MVC app that references a number of javascript files in various places (in the site master and additional references in several views as well). I'd like to know if there is an automated way for compressing and minimizing such…
wgpubs
  • 8,131
  • 15
  • 62
  • 109
36
votes
3 answers

Flip horizontally html and css

I am trying to implement a feature where I need to have two trees, one next to the other, looking like mirrors. Please, see the image: The point is I found the way to flip it horizontally but text is also inverted. What I cannot do is invert the…
lontivero
  • 5,235
  • 5
  • 25
  • 42
34
votes
11 answers

How do a get buttons not to take the focus?

I want my (ExtJS) toolbar buttons not to grab the focus on the web page when they are clicked, but to do their "thing" while leaving the focus unchanged by the click. How do I do that?
Mike Peat
  • 445
  • 1
  • 6
  • 14
34
votes
4 answers

Telerik KendoUI vs Sencha ExtJS?

We are going to build a enterprise grade application on Web and for that we have filtered down our choices to ExtJS and KendoUI. Both are decent and have rich features / controls, KendoUI is faster in performance than ExtJS but then ExtJS is like…
deej
  • 2,536
  • 4
  • 29
  • 51
33
votes
10 answers

How to create custom ExtJS form field component?

I want to create custom ExtJS form field components using other ExtJS components in it (e.g. TreePanel). How can I do it most easily? I've read docs of Ext.form.field.Base but I don't want to define field body by fieldSubTpl. I just want to write…
pcjuzer
  • 2,724
  • 4
  • 25
  • 34
33
votes
4 answers

Call a function in an ExtJS XTemplate

I'm familiar with using a function to determine a specific condition using xtemplate but not sure how to directly call a function without the conditional if statement. My code, for example, wants to append some characters to a string that I am using…
Snowright
  • 625
  • 4
  • 15
  • 22
33
votes
3 answers

Best practice for overriding classes / properties in ExtJS?

I have an Ext.form.field.Text and I want to override the setValue function. What is the recommended way to override this class functionality in ExtJS? Ext.override?
A1rPun
  • 16,287
  • 7
  • 57
  • 90
32
votes
10 answers

What is the value of var me = this;

I find this pattern all over the ExtJS source code. method: function() { var me = this; ... me.someOtherMethod(); } Why don't they just use this? Is there some advantage to always often defining me (outside of not having to type 2…
Hemlock
  • 6,130
  • 1
  • 27
  • 37
32
votes
4 answers

ExtJS 4: Models with Associations and Stores

Introduction I'm facing an application design problem with the Ext.data.Model class in ExtJS. I will try to develop my ideas to a very common online store scenario here, so you can follow me. I would really appreciate any comments on my thoughts and…
Konrad Kleine
  • 4,275
  • 3
  • 27
  • 35
32
votes
10 answers

ExtJs Gridpanel store refresh

I am binding ExtJs Gridpanel from database and add "Delete" button below my gridpanel. By using the delete button handler, I have deleted selected record on gridpanel. But, after deleting, the grid does not refresh (it is deleted from database but…
MNR
  • 1,073
  • 7
  • 23
  • 37
32
votes
14 answers

Removing _dc parameter in Ext

Using Ext, default Ext.Ajax add to GET-request _dc parameter. For example GET /ConnViewProcessing/?_dc=1263286227619 How to remove this parameter? PS: it's necessary to manually cache response to ETag and If-None-Match.
ko1ik
  • 512
  • 1
  • 7
  • 12
32
votes
7 answers

How to wait until all stores are loaded in ExtJs?

I have a set of combo boxes that are driven by five stores and I want to fire a function once all the stores are completely loaded. What is the recommended way of doing this? I could do something like this but it feels kludgy: var store1Loaded =…
Greg Finzer
  • 6,714
  • 21
  • 80
  • 125