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
1 answer

disabled: '{readOnly}' what's mean ExtJs

I'm working on a project in ExtJS started by my colleagues. I found an item of a fieldset which is like this: { xtype: 'radiofield', name: 'something', value: something, label: something, checked: something, bind: { …
0
votes
2 answers

Save As Dialog in Ext Js

I want to ask if there is a "Save As" dialog in Ext Js Modern? So I can save an Object from a web Page into a local file.
Hasan
  • 296
  • 1
  • 8
  • 23
0
votes
1 answer

sencha extjs run when storemanager has finished loading?

While developping an application I run some code on application launch: Ext.application({ extend: 'TestApp.Application', name: 'TestApp', requires: [ 'TestApp.*' ], // The name of the initial view to create. …
paul23
  • 8,799
  • 12
  • 66
  • 149
0
votes
1 answer

Extjs modern toolkit 6.5.2 Triton binding Multiselect field

I'm trying to simulate in modern toolkit the tagfield that existed in classic toolkit, I found two ways to do it : https://github.com/facilitiesexchange/TagField/ AND ExtJs 6 Modern toolkit Multiselect field I used both in this way : { …
0
votes
2 answers

Cannot bind store on Ext.grid.PagingToolbar Extjs

I'm developing a extjs project using 6.5.3 version and modern toolkit but I have a problem trying to implement a dataview with pagingtoolbar, my view has a viewmodel that contains a store with rest proxy, but when I watch the application, the…
0
votes
1 answer

Use Singleton class in XTemplate - DataView

I'm developing a extjs project using 6.5.1 version and modern toolkit, i have a singleton class that manage all translations something like that: Ext.define('QApplication.Labels', { singleton: true, name: "Name", email: "Email", …
0
votes
1 answer

Sencha keyed many to one relation, with complex (namespace) name

The official documentation on sencha has a simple example of a many-to-one relationship. It uses "reference" field to identify the relationship. A slightly modified example is below, this works: Ext.define('Customer', { extend:…
paul23
  • 8,799
  • 12
  • 66
  • 149
0
votes
1 answer

sencha, Grid not update automatically when a store is updated

Well consider the following test code, written in extjs 6.5 modern. Ext.define('myApp.store.Sections', { extend: 'Ext.data.Store', storeId: 'Sections', alias: 'store.sections', fields: ['name', 'event'], data: { …
paul23
  • 8,799
  • 12
  • 66
  • 149
0
votes
1 answer

The loadRecord() method in modern version EXT JS 6.2.0

From documentation 6.2.0 EXTJS, the loadRecord() method is available only in the classic version. How can I replace it in the modern version? I want to get the following effect only in the modern version 6.2.0: if (record) { …
Umbro
  • 1,984
  • 12
  • 40
  • 99
0
votes
1 answer

Error in console: Unrecognized alias: widget.feedform

I have the following problem. When I press the Add New Feed button in the feeds.js folder, which should call the onNewFeed function (located in the MainController.js file), an error appears in the console: Unrecognized alias: widget.feedform When…
Umbro
  • 1,984
  • 12
  • 40
  • 99
0
votes
1 answer

extjs modern NS_ERROR_NOT_AVAILABLE on dialog show()

I am getting NS_ERROR_NOT_AVAILABLE exception on firefox 60.0.2 on dialog.show() of a custom dialog. After debugging I ended up that the exception is being produced on line 85351 of ext-modern-all-debug.js: value =…
Zoti
  • 822
  • 11
  • 31
0
votes
0 answers

Listener events not being triggered

I have been playing around with the documentation whilst learning ExtJS. But when testing listener events nothing will happen. I have generated a modern app using sencha CMD. I deleted all the code that wasn't needed and then added my own based on…
sunnyj58
  • 93
  • 10
0
votes
0 answers

iOS 11.3.1 Iframe scroll issue in Safari browser with Ext JS modern 6.5.3

I am having an issue in scrolling the iframe embedded website content in latest IOS 11.3.1(iPhone) Safari browser for mobile for Ext JS 6.5.3 modern Following is the Fiddle. Can anyone suggest the solution on it.
Nitin Soni
  • 87
  • 1
  • 13
0
votes
1 answer

Modern toolkit store load events not fired

I used Ext JS 5.x with Sencha Touch and try to migrate to a universal modern app as it is suggested by Sencha. Yet it feels like several things changed and aren't working as supposed. I'm using a virtual store for loading data via AJAX into a simple…
gulty
  • 1,068
  • 1
  • 8
  • 14
0
votes
1 answer

Why labelWidth: 'auto' is hidding the radiofield?

I am trying to wrap the label of a radiofield but i don't want to set fixed width and labelWidth because of the responsiveness of the view. But when i set the labelWidth to auto the input element gets hidden. Am I doing it wrong? Thanks. Add the…
Zoti
  • 822
  • 11
  • 31