Questions tagged [extjs6.2]

Sencha ExtJS is a JavaScript framework for building Rich Internet Applications (RIAs). Use this tag only for questions specific to version 6.2, otherwise use a more general tag like [extjs] or [extjs6].

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

Use this tag only for questions specific to version 6.2, otherwise use a more general tag like [extjs] or [extjs6].

91 questions
4
votes
2 answers

ExtJs 6.2 classic does not work with Firefox and a touchscreen

ExtJs 6.2.0 does not work on Firefox if the screen is touch enabled. I noticed the problem using the classic version of the framework, I cannot tell if the modern version is also affected. This is the exact problem: If the screen is touch enabled,…
Lorenz Meyer
  • 19,166
  • 22
  • 75
  • 121
3
votes
1 answer

Workaround for Bug EXTJS-22715 enableTextSelection: true has no effect inside Window

The enableTextSelection attribute doesn't work when grid is inside a window. The following code has no effect on the grid. viewConfig: { enableTextSelection: true } See this fiddle for a demonstration:…
Lorenz Meyer
  • 19,166
  • 22
  • 75
  • 121
2
votes
1 answer

Is there a way to customize the tooltip in the Ext.grid.column.action?

Is there a way to customize the tooltip in the Ext.grid.column.Action? I'd like to set the autoHide to false. Thanks in Advance
2
votes
1 answer

Dynamically render a grid into a component ExtJS

I made a viewport with a treelist sidebar. I want that when i click a button in my sidebar, I replace the center part of the screen by a grid display a store content viewport.js creating a side bar, a tool bar with a button on top and a center part…
RomMer
  • 113
  • 12
2
votes
2 answers

ExtJS : Widget Combo resets value for all fields when i click on expand

I am using a treePanel in which one column is using widgetColumn with combo inside cell. Below is sample code. { text: 'TC', dataIndex: 'scrTC', xtype: 'widgetcolumn', widget: { xtype: 'combo', store: 'TCStore', …
NewBie
  • 63
  • 10
2
votes
1 answer

Ext JS 6.2.0 localization overrides don't work

I'm working on Ext JS MVC app, that needs to be localized. Trying to reproduce official docs (http://docs.sencha.com/extjs/6.2.0/guides/core_concepts/localization.html). Locale file load correctly. Console message: [W] Overriding existing mapping:…
Andy Infin
  • 421
  • 1
  • 4
  • 9
2
votes
1 answer

Input mask for ExtJs 6 textfield

I have a textfield mask in ExtJs 4. It can be found here Can anyone point me in the direction of a textmask example in ExtJs6.
Aditya Korti
  • 692
  • 2
  • 12
  • 28
2
votes
2 answers

Ext JS Remove GUI Item From Its Container By xtype

A panel contains of 3 items. The last item has an event handler attache. In the handler a new item (widget) is added to the parent panel. Before adding a new item, an old item of the same xtype should be deleted. Here is an example that does not…
Alexandr
  • 9,213
  • 12
  • 62
  • 102
1
vote
2 answers

How to collapse navigation panel by default in Ext JS admin dashboard?

I want to modify the side navigation panel of an existing Ext JS app so that, when I open the app, instead of being expanded by default it is collapsed instead. I believe I am working with a slightly customized version of the default Ext JS admin…
Nicola Zilio
  • 355
  • 6
  • 15
1
vote
0 answers

Many-to-Many models association, matrix table with additional fields

My database is structured with 3 tables: Product, Operation and a junction table Product_Operation for manage many to many relationship. The junction table is defined with more than two columns, in that each 'association' has additional information…
user1088417
  • 55
  • 2
  • 9
1
vote
0 answers

Understanding ExtJs Class properties

I try to understand how properties works in ExtJs class. Refer to below code: Ext.define('My.sample.Person', { name: 'Unknown', food: undefined, foodList: [], constructor: function(name) { if (name) { this.name…
Neo
  • 141
  • 11
1
vote
2 answers

How to add sync callbacks to store in ExtJS

I have a store which I want to sync manually everytime certain actions are done. I've seen this question and this one too. What I'd like to know is if there is a way to establish a default sync callback functions on the store configurations. I know…
Brugui
  • 574
  • 6
  • 20
1
vote
1 answer

grid.getView().getSelectionModel().getSelection(); not working

I am working with ExtJS6.2 I have a simple Ext.grid.Panel with this.selModel = Ext.create('Ext.selection.CheckboxModel', { checkOnly: true, injectCheckbox: 1 }); I need the data from the grid in the same sequence like the data…
E.Scott
  • 19
  • 3
1
vote
1 answer

Change textfield to textareafield

I need to change xtype from textfield to textareafield basing on a condition. I need to do something like this, but I cant update xtype Ext.define('app',{ launch: function(){ var i = 1; if (i == 1) { …
1
vote
1 answer

Get rendered rows in `treepanel` Ext JS

I need a way to get all rendered rows in a treepanel, but I was not able to find how to achieve it. I tried the following events: treepanel#render: panel.getNodes() is empty, because the rows get rendered after the panel. treeview#refresh: it gets…
Lorenz Meyer
  • 19,166
  • 22
  • 75
  • 121
1
2 3 4 5 6 7