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

Store subclass does not work in extjs

I have created a class like Ext.define('abc.StoreService', { extend: 'Ext.data.Store', autoLoad: true, autoSync: true, proxy: { type: 'memory', reader: 'json', data: [{ date:…
Hacker
  • 7,798
  • 19
  • 84
  • 154
0
votes
1 answer

ExtJS6: How to set leftpad margin to 0 for treelist items

I have a treelist working using ExtJS6 but since items are left padded automatically given their depth and text inside it gets truncated for third child and deeper. Since I use it as a menu, having fixed width. I need to remove auto calculated…
ducktyped
  • 4,354
  • 4
  • 26
  • 38
0
votes
0 answers

Excel-like behaviour of Grids in Ext JS

I'm trying to figure out a way to have an Excel-like behavior with the Grids on Ext JS. Here is the sample grid I am working with. So far we can already naviguate through the cells with the arrows but only in edit mode. However what I am trying to…
SilenT612
  • 43
  • 1
  • 7
0
votes
1 answer

FilterPickList not removing default values from drop down in extjs 6

I have a component like Ext.define('Abc.view.main.Indicator', { extend: 'Ext.form.field.Tag', xtype: 'indicator', fieldLabel: 'indicator', name: 'indicator', filterPickList: true, displayField: 'value', value:'N', …
Hacker
  • 7,798
  • 19
  • 84
  • 154
0
votes
1 answer

ExtJS6: Not replacing proxy :id for read when called

ExtJS6 model is not forming correct proxy urls for dynamic parameters Model looks like Ext.define('Testt.model.User', { extend: 'Ext.data.Model', fields: ['id', 'name'], proxy: { type: 'ajax', api : { read : 'api/user/:id', …
ducktyped
  • 4,354
  • 4
  • 26
  • 38
0
votes
1 answer

Set default selected value in extjs6 comboBox

I have made code like below Ext.define('Abc.store.Indicator', { extend: 'Ext.data.Store', alias: 'store.indicator', fields: ['key', 'value'], proxy: { type: 'memory', reader: { type: 'array' } …
Hacker
  • 7,798
  • 19
  • 84
  • 154
0
votes
1 answer

Not Using requires in extjs has no loading effect

I am using CMD and extjs. In my Main.js i have something like Ext.define('Abc.view.main.Main', { extend: 'Ext.panel.Panel', xtype: 'app-main', header:{ height: 25, titleAlign: 'center', title: 'new tile, …
Hacker
  • 7,798
  • 19
  • 84
  • 154
0
votes
2 answers

ExtJS6 Extending Components

If I declare a custom component, how to I correctly apply changes to the properties when I create an extension of the component? For example: Ext.define('GridForm',{ extend: 'Ext.window.Window', initComponent: function(){ …
Elcid_91
  • 1,571
  • 4
  • 24
  • 50
0
votes
0 answers

ExtJS filter function working on one combobox but not another?

I am working on a project that requires me to filter a combobox down as the user types. I have it set up so that I have a helper function that should be a general purpose combobox function: filterComboGeneral: function(combo, filterfield) { //…
SDSMTKyzer
  • 112
  • 10
0
votes
1 answer

Define fields outside and then bring into items lits

I am using extJs 6. I have code like below, it can be a text box or anything else also. I want to make a common repo for all the fields and then include in the reports by using xtype or something else, because same code will be used in multiple…
Hacker
  • 7,798
  • 19
  • 84
  • 154
0
votes
1 answer

ExtJs 6.02 Store with configs remoteSort and groupField makes the store to auto load

So the issue is that if you instantiate a store with remoteSort and groupField the store triggers a request to the server behaving in an auto-load way. e.g Ext.create('Ext.data.Store',{ remoteSort: true, groupField: 'someProperty', …
code4jhon
  • 5,725
  • 9
  • 40
  • 60
0
votes
2 answers

Adding a image in ext tab panel

I am new to ext js.How do i add an image as a logo of my application in the header of ext tab panel? Following is my code:- Ext.define('MyApp.view.main.Main', { extend: 'Ext.tab.Panel', xtype: 'app-main', requires:…
Null Pointer
  • 130
  • 1
  • 5
  • 16
0
votes
1 answer

Sencha Cmd 6 build is creating directory with "${ext.dir}" name

Sencha Cmd v6 when built creates a directory under current ext app with name "${ext.dir}", changing config for ext.dir in sencha.cfg does not help How to disable it from generation directory with name "${ext.dir}" instead with some other sensible…
ducktyped
  • 4,354
  • 4
  • 26
  • 38
0
votes
2 answers

ExtJS 6 chart legend event listeners don't work

Here is the fiddle: https://fiddle.sencha.com/#fiddle/1b7d Main idea is that legend code below does not work. Event listeners don't work. legend: { docked: 'bottom', listeners: { selectionchange: function(me, selected) { …
freento
  • 2,939
  • 4
  • 29
  • 53
0
votes
1 answer

Search a Sencha TreePicker

I am using TreePicker from ExtJS 6.0.2. I would like to know how can I perform a search or query on the Picker data similar to this example - Fiddle. It has this property which is an built-in feature from combo-box: queryMode: 'local' I have made…
Binay Das
  • 37
  • 5