Questions tagged [extjs6-classic]

The classic toolkit provides traditional Sencha Ext JS application support. This includes support for most desktop browsers, tablets, and touchscreen enabled laptops. The classic toolkit is ideal for developers seeking legacy browser support (IE8+) with traditional Ext JS componentry.

395 questions
0
votes
1 answer

Sencha TreePicker does not show scrollbar

I am trying to run the code from this link - Sencha TreePicker - Fiddle. I am unable to get the scrollbars to show-up. In the fiddle it shows up as expected since it uses EXTJS 5.0. I am using EXTJS 6.0.2-Classic for my app. And this is what I am…
Binay Das
  • 37
  • 5
0
votes
1 answer

ExtJS 6.0.1 dataview tpl rendered twice

I am trying to render a table in dataview. Everything is working fine but the tpl renderes twice: First: the tpl content loaded along with the data Second: the tpl alone is rendered without any data I found out that this question was already asked…
a.premkumar
  • 15
  • 1
  • 6
0
votes
1 answer

ExtJS: Infinite scrolling not working

I am trying to make a grid with Infinite scroll. I followed the example here but when ever I run the app, there is the following error in the console verticalScroller config is not supported I am using ExtJS 6.0.1 classic. Below is my grid and…
U.P
  • 7,357
  • 7
  • 39
  • 61
0
votes
1 answer

Hide column in Grid at runtime

I have a trouble about hiding columns in a Grid at runtime. In a project I use a function that returns the configuration of a column in a Grid. For take the list of my columns in the Grid I use this piece of code: var cmV = cmpGrid.getView(); var…
Lorenzo
  • 200
  • 2
  • 13
0
votes
1 answer

ExtJS: Master Detail grids using same store

I am new to ExtJS and am trying to find my way around. I am currently making a POC and am stuck at a point. I am trying to create a master detail page with a Grid in master and a number of tabs in detail each with either a form or grid. Upon…
U.P
  • 7,357
  • 7
  • 39
  • 61
0
votes
1 answer

Extjs buffered rendering in treegrid

Is it possible to use buffered store for Ext JS (version 6) TreeGrid?. The parent node should be expanded to show all child nodes.
GSKT
  • 11
  • 3
0
votes
1 answer

How to create editable grid column with few values? | Extjs

I have a grid with columns name, value, new value. New value column is combobox because there can be a few values. Admin can approve/decline new values and correct proposed these new values. My grid columns looks like this: columns: [ …
Martin
  • 4,042
  • 2
  • 19
  • 29
0
votes
1 answer

why do newly added components not display after removing other components from extjs panel

In ExtJs 6 classic, I have an Ext.panel.Panel that I have added children to, some of these children are dynamically created Panels and containers. I save references to these containers and remove them from the parent Panel (this) like so: if…
Peter Smith
  • 849
  • 2
  • 11
  • 28
0
votes
2 answers

Button background color in ExtJS 6 does not change

I know that there is many post on this subject, but even after looking at all and trying to use all the "cls" configs, the background color of my button does not change. Here's my code: var miscTools = Ext.create('Ext.panel.Panel', { title:…
kaycee
  • 901
  • 1
  • 9
  • 35
0
votes
1 answer

New columns in Ext.grid.property.Grid?

Is there a way to add a new columns in Ext.grid.property.Grid? By default there is Name and Value and I want to add few columns such as New Value and xtype: 'actioncolumn' with handlers to approve new value or not. And you know how to rename default…
Martin
  • 4,042
  • 2
  • 19
  • 29
0
votes
2 answers

How to get access to the view? | Ext.js 6

Currently I am learning ext.js 6 and I have a quastion to ask. I want to build a tree-like menu and from examples I know how to build all kinds of trees. But how can I change a view when user clicks on different leefs in a tree? I know I need…
Martin
  • 4,042
  • 2
  • 19
  • 29
0
votes
2 answers

Ext Js store parameters change when the grid page changes

I have a grid of which store is filtered in server side. This is the store: var _store = Ext.create('Ext.data.Store', { model: isemriModel, storeId: 'storeFiltered' + _id, pageSize: 5, autoLoad: { filter: JSON.stringify(filterObject)…
irohamca
  • 497
  • 3
  • 19
0
votes
2 answers

How to cange value of button overflowText property?

I have panel wiht toolbar with buttons. Panel resizable when it small buttons hide in menu. In menu it show icon and value of overflowText. But on click button i need change overflowText. expandClick: function (btn) { var me = this; …
Lokser
  • 17
  • 10
0
votes
1 answer

How to disable expand collapse hints on collapsible panel?

I want disable hints expand/collapse on expand/collapse button of collapsible panel. Kill it!
Lokser
  • 17
  • 10
0
votes
1 answer

Extjs 4 to 6 migration classes

We have js files writen in Extjs 4. I have to migrate theese to Extjs 6. Almost everything is fine, but when we create own classes (extended extjs classes), we have a problem. (Unfortunately there's no mvc, just classes and create). In the…
Eleanor
  • 358
  • 5
  • 24