Questions tagged [extjs6-modern]

The modern toolkit provides universal HTML5 application support for all modern browsers (IE10+) from desktop to phone. The modern toolkit is ideal for developers seeking a cross-browser, cross-device experience for their users.

150 questions
0
votes
0 answers

ExtJS 7 modern application freezes during a scroll when packed as Cordova/Android app

I have a simple Cordova application, which includes an ExtJS 7.4 (modern toolkit) grid containig about 50 rows. It gets build normally and installs and starts normally on my Android phone. However, sometimes there is a problem with the scrolling…
CSM MX
  • 11
  • 2
0
votes
1 answer

Ext.form.Panel's beforesubmit listener does not respect return: false when attached via controller

I have a formpanel with a beforesubmit listener, which should prevent the submission if the form is invalid. Sencha Fiddle availble here: https://fiddle.sencha.com/#fiddle/3j5l (just comment the beforesubmit: 'onFormBeforeSubmit' line within the…
MX Starter
  • 55
  • 6
0
votes
1 answer

How to enable pull refresh in a modern toolkit app

When an application is created using Ext.application() (modern toolkit), pull-to-refresh functionality seems to be disabled on the mobile browsers. Is there any way to re-enable it? Code: Ext.application({ name : 'Fiddle', launch :…
MX Starter
  • 55
  • 6
0
votes
2 answers

Loading Ext.app.ViewController via Ext.application() / modern toolkit

According to the Sencha Documentation here: https://docs.sencha.com/extjs/7.0.0/modern/Ext.app.Application.html we can automatically load application controllers as needed via the controllers configuration of the Ext.application() method (thus…
MX Starter
  • 55
  • 6
0
votes
2 answers

Next button disabled in pagination toolbar of ExtJS

I am rendering a grid with pagingtoolbar. The api works fine returned desired number of records as per the start and limit params. But the next page button of the paging toolbar is disabled. I went through some documentations, and figured out they…
0
votes
0 answers

EXTJS modern combobox autocomplete spinner picker instead of usual picker

We do have a combobox to autocomplete like a search field. If it is on the modern toolkit. the picker is changed to the spinner selector and you cannot type anymore. How can I prevent the picker change in modern or how could I do like a search…
Jens H
  • 105
  • 1
  • 10
0
votes
2 answers

Duplicate reference when maximizing/restoring dialog

When maximizing/restoring a dialog that contains some form fields with names, like: Ext.create('Ext.Dialog', { maximizable: true, items: { xtype: 'textfield', name: 'id', bind: '{record.id}' }, buttons: [{ text:…
ext-dev
  • 54
  • 2
0
votes
1 answer

ExtJS6 - Grid tpl showing div class as text

I am trying an example for Ext.grid.Grid from extJS docs. I am unable to figure out why the tpl is also showing div element also as text. Ext.create('Ext.data.Store', { storeId:'employeeStore', fields:['firstname', 'lastname', 'seniority',…
Siju
  • 2,585
  • 4
  • 29
  • 53
0
votes
1 answer

Modern Toolkit- Grid with Multiselection: How to make multiple checkboxes ticked on grid row selection.?

In modern multiselection grid, Multiple checkboxes getting ticked only when i click on checkbox. But i want multiple checkboxes to be ticked on grid row selection. Can anyone please suggest.
0
votes
1 answer

Make grid cell editable on single click, in modern toolkit extjs

In modern toolkit extjs, how to make a grid cell editable on single click? I tried using clickToEdit: 1, as in classic version. But this doesn't work in modern. Can anyone suggest me on this.! Thanks!
0
votes
1 answer

How do I dock a resizable ExtJS Ext.Panel within another resizable docked panel

I have a Modern ExtJS Ext.Panel docked left with resizable set with edge 'east'. IN this left panel, I want Flex upper panel docked bottom panel with edge 'north' within the docked left panel. The "flex" upper left panel does not flex. See Sencha…
0
votes
1 answer

Problems with references and stores in Sencha ExtJS

I’m new here in at Stackoverflow and to Sencha ExtJS development. I’m a student from Germany and I’m current trying to get my degree in media computer sciences. As a part of my final assignment I’m currently developing the UI of a webapp for a local…
Euse Mann
  • 1
  • 2
0
votes
1 answer

Ajax asynchronous - how to avoid function return before completed request

I have an array of string (id) and I need to iterate on it to make an ajax request to an api and push response in an array. The problem is that, because of asynchronous load, the return statement is made before the end of the call. Here an example:…
0
votes
2 answers

How to properly define properties in ExtJS custom class

I am attempting to create a reusable title bar for our grids. This will require a couple of properties which can be set when the grid title bar is used. The problem I am running into is that the property is undefined when I attempt to use it. I…
gbishop
  • 25
  • 4
0
votes
1 answer

ExtJS 6 Ext.field.Date doesnt contain header of Ext.panel.Date

I need a simple way to select year with Ext.field.Date component. Ext.panel.Date contains header with ability to select year. However, Ext.field.Date, which internally use Ext.panel.Date, doesn't contain this header. Simple fiddle to illustrate what…
Sergey Novikov
  • 4,096
  • 7
  • 33
  • 59