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

extjs 4 - how to add items into panel header?

I want to add Ext.button.Split into panel's header instead of title. It must be something like switcher of a panel's content and title of the same panel together. Is there any option in extjs 4 to do that? Or is there better solution instead of…
ddd
  • 137
  • 2
  • 10
4
votes
1 answer

Is there a free (LGPL compatible) Grid plugin for jQuery that has similiar capabilities to the Ext-JS Grid?

One of the most appealing features of Ext-JS is the Grid control in my opinion. I was searching for something free that does something close and have set my hopes on jQuery. I haven't found a jQuery (or other LGPL compatible) Table / Grid plugin…
Eran Medan
  • 44,555
  • 61
  • 184
  • 276
4
votes
3 answers

Extjs : How to enable/disable a checkbox using renderer while loading a grid

I need to load a grid based on the query results I get. I am not having any issues with loading the text fields in the grid but there is one particular column which is a check box type. I am using the xtype: 'checkcolumn' for this purpose. The…
user3546785
  • 157
  • 1
  • 7
  • 16
4
votes
2 answers

EXTJS5 Binding Radiogroup

There are some days that I'm trying to build a code that allows binding a radiogroup. However, despite efforts, I have not succeed. What is missing in my code? Can you help me, please? Fiddle: https://fiddle.sencha.com/#fiddle/bao
jose
  • 1,490
  • 3
  • 30
  • 65
4
votes
1 answer

Sencha touch 2.4.0 SASS compile error

Environment: Mac OSX Mavericks 10.9.4 Compass 1.0.1 (Polaris) Compass-blueprint (1.0.0) Sass 3.4.5 (Selective Steve) sencha app build testing command no error When I compile app.scss file in the ./resources/sass/ directory, an error…
icese7en
  • 142
  • 1
  • 10
4
votes
1 answer

File upload field is reset when submit form

I am using ExtJS version 4.1.1. I try to create upload file form using filefield as follow: { xtype: 'filefield', itemId : 'my-file', name: 'my file', emptyText : 'No file chosen', fieldLabel: 'Upload File', submitValue:…
Gui
  • 51
  • 4
  • 7
4
votes
1 answer

What is the "presence" validation type?

What is presence type validation? validations: [{ type: 'presence', field: 'age' }] Please help for illustrative example.
Michael Phelps
  • 3,451
  • 7
  • 36
  • 64
4
votes
3 answers

How to properly set combobox value in ExtJS grid editor?

I have a grid and want to use a combobox as a grid cell editor. The value of the editor combobox should depend on multiple fields in my data record, so I am trying to set the value of the combobox in the grid's beforeEdit listener, like…
Chris Farmer
  • 24,974
  • 34
  • 121
  • 164
4
votes
1 answer

sencha app build production WRN C1014: callParent has no target

sencha app build production WRN C1014: callParent has no target
chengzhiwei
  • 101
  • 1
  • 4
4
votes
2 answers

How to get the selected value of ExtJS combobox through selenium?

I am having a webpage rendered using ExtJS. It renders multiple number of Comboboxes with some generated ID. And each combobox have a different option selected. How can I find out which value is selected in each combo? While debugging the the HTML…
sidgate
  • 14,650
  • 11
  • 68
  • 119
4
votes
3 answers

Can ExtJS 3.x and ExtJS 5 co-exist in a single application?

I'm not a developer myself, but my company develops and supports a large web application for insurance brokers. Since way back we've been using ExtJS 3.x and as we went further the harder it got to migrate from 3.x to 4 and now to ExtJS 5. Due to…
al_x13
  • 305
  • 1
  • 3
  • 7
4
votes
1 answer

How to use Ext5 combobox with data bindings

I want to use a combobox which receives the preselected value from a data binding and also the possible options from a data binding of the same store. The panel items configuration looks like this: { xtype: 'combobox', name:…
Erik Theoboldt
  • 2,168
  • 2
  • 16
  • 21
4
votes
1 answer

extjs 4.1.1 - Pagination in grid on local data

I am relatively new to extjs. I am facing a problem that I can not resolve. I have been searching online but unable to find the answer. Appreciate any help. In my code, I am trying to add pagination to the data displayed on the grid. The code…
ted
  • 43
  • 1
  • 4
4
votes
2 answers

Prevent tab into field

How can I prevent a user from tabbing into a field (comboxbox)?
Upperstage
  • 3,747
  • 8
  • 44
  • 67
4
votes
1 answer

ExtJs. Set rowediting cell value

I have grid with RowEditing plugin. Editor has 2 columns: one with combobox and another with disabled textfield. I need to change textfield value after changing the combobox value. I have combobox listener: listeners = { select: function…
tytyryty
  • 741
  • 7
  • 17