Questions tagged [extjs6]

Sencha ExtJS is a JavaScript framework for building Rich Internet Applications (RIAs).

Sencha ExtJS

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

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.

  • 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. ExtJS 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

964 questions
4
votes
2 answers

How do I change the separator of extraParams in an ExtJS store proxy?

I'm stuck with a problem related to the extraParams of an ExtJS store.. I need to change the default params separator & to a customized ; since the web service I'm accessing doesn't respond to &. Is there a way to change the separator? Bests,…
tuc0w
  • 141
  • 1
  • 8
3
votes
1 answer

How to make swapable component in exJs or in javascript

How to make swapable component in exJs or in javascript. I have two components and both are dragabble. xtype : "panel", title: 'My Apps', region: 'east', width: 290, items:[{ …
David
  • 4,266
  • 8
  • 34
  • 69
3
votes
1 answer

How to add extra element in data view while using tpl

How to add extra element in data view while using tpl. I am using tpl with itemselector. Now I have add some extra div in that which is not coming from the store. How to add that ? Here is my data view onPanelLoad : function( panel , width , height…
David
  • 4,266
  • 8
  • 34
  • 69
3
votes
1 answer

How to hide specific columns in the grid column menu (ExtJS 6.5.3)?

I have a grid, which has some columns that are set hidden. However, if I click on the column head and open up the menubox it shows all columns in the column section. It also includes those columns that are set hidden in the grid itself. My question…
FlowLess10
  • 133
  • 10
3
votes
1 answer

How to get the data from the window to the main screen

On the success of some Ajax call I am getting opening a window and the response I attach with the window. Here is my code. success: function (response) { var data = Ext.decode(response.data); var window = Ext.widget('win'); window.data…
David
  • 4,266
  • 8
  • 34
  • 69
3
votes
1 answer

No Icons after Fontawesome upgrade in ExtJS 6

I have Sencha ExtJS 6 and some of new FontAwesome icons didn't work out. I thought it is due to old version of FontAwesome. Then I decided to upgrade it and I followed this tutorial: https://github.com/yamayamayamaji/extjs-package-fontawesome which…
harunB10
  • 4,823
  • 15
  • 63
  • 107
3
votes
1 answer

Sencha - ExtJS - QuickTipManager - Build Failed c2008

Settings: Ubuntu 16.04.3 LTS, MATE 1.12.1 What I've done: Install the Sencha CMD; Download the Sencha ExtJS (trial version 6.5.2.15); Created the folder /home/master/sencha/test; Do cd /home/master/sencha/test; sencha app init --ext@6.5.2 in the…
Scilef
  • 90
  • 9
3
votes
1 answer

Filter in grid header extjs 6

How to create a filter in the grid headers? I found this snippet: https://stackoverflow.com/a/22015160/5775332 and updated to compatibility with 6th version: Ext.define('Fiddle.view.SearchTrigger', { extend: 'Ext.form.field.Text', alias:…
Slava Mokerov
  • 126
  • 3
  • 18
3
votes
2 answers

ExtJS 6 Use custom filter function within memory proxy

I have a store configured with memory proxy with enablePaging: true. Store's remoteFilter and remoteSort set to true so filtering and sorting requests handled by proxy. When I filter my store by multiple fields I want to use OR condition, not…
Sergey Novikov
  • 4,096
  • 7
  • 33
  • 59
3
votes
2 answers

How to change the colour of an Icon from FontAwesome

I have a menuitem with an icon specified, like this: { xtype: 'menuitem', text: 'Random Text', iconCls: 'x-fa fa-briefcase', } How do I gain access to this icon in the css and change the colour of it?
DeputyDylDog
  • 200
  • 3
  • 12
3
votes
2 answers

Bug on grid docked summary

This is my first question, I’ll try to be accurate. I updated my application from ExtJS 6.2 to ExtJS 6.5 and I found a bug: in a Grid the Summary doesn’t work properly when docked. I created a Sencha Fiddle showing that issue and I asked to official…
DanieleAlessandra
  • 1,380
  • 1
  • 12
  • 21
3
votes
1 answer

MVVM with inheritance between views and viewcontrollers

How can we extend a view with ExtJs MVVM pattern ? What is the correct way to extend a view that has a viewcontroller bound to it ? I have a base view with its viewcontroller, and I would like to extend it, like in this fiddle. The problem is that…
Lorenz Meyer
  • 19,166
  • 22
  • 75
  • 121
3
votes
1 answer

Why doesn't a store declared in a ViewModel get loaded?

This question is related to Trying to bind a store to a ViewModel, but is a different question. I'm declaring a store in a viewmodel like this: Ext.define('Mb.view.rma.DetailsModel', { extend: 'Ext.app.ViewModel', alias:…
Lorenz Meyer
  • 19,166
  • 22
  • 75
  • 121
3
votes
1 answer

ExtJS 6 plugin.rowwidget Get binded record upon row body component creation

I have a grid with Ext.grid.plugin.RowWidget. When I expand row I have to load some data via ajax using row record data as request parameters and display loaded data in a row body component. How I can get row record data upon row body component…
Sergey Novikov
  • 4,096
  • 7
  • 33
  • 59
3
votes
2 answers

ExtJS 6 Remove focused elements outline

How I can remove focused elements (tab, grid cells, etc.) outline in my ExtJS 6 app? Is there any global config for this? Example: I managed to remove outline for tabs, buttons and grid cells with this CSS rules * { outline: none…
Sergey Novikov
  • 4,096
  • 7
  • 33
  • 59
1 2
3
64 65