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

Test Extjs 6.5 modern application in browser

I am new in using the latest version of ExtJs and I have a small app project created using Sencha Architect based on the Login example in ExtJS 6.5 modern. However, I cannot check if the UI is working. For the previous versions of ExtJS, I just open…
0
votes
0 answers

How to make the list scroll inside the parent without setting the static height in Extjs 6.x?

Is it possible to scroll the list without setting some static height, I need to make the list to scroll independent of its parent controls. { xtype: 'panel', layout: { type: 'fit', align: 'stretch' }, items: [{ …
Gowtham S
  • 923
  • 14
  • 39
0
votes
1 answer

ExtJs 6 Modern toolkit Multiselect field

I have upgraded my project from Sencha touch to extjs universal app , Most of the things are workng but no the MultiSelect field. It was working fine in sencha touch but not working in extjs 6 modern toolkit Ext.define('Ext.ux.field.Multiselect',…
Waqar Haider
  • 929
  • 10
  • 33
0
votes
1 answer

Extjs Alerts not Centering in Modern

I have an issue with Extjs Alerts in modern toolkit. I need to display an alert but sometimes it renders perfectly and sometimes it overlaps the screen just like in the image above, Below is my Ext.Msg.alert("Title", 'Message');
IsaacK
  • 1,178
  • 1
  • 19
  • 49
0
votes
1 answer

Extjs 6.x Modern : Why template methods like onRender are not working?

As mentioned in this Docx Component Life Cycle the template methods like initComponent (initialize -> working), onRender are not invoked when override in the subClass. Ext.define('My.custom.Component', { extend: 'Ext.Component', onRender:…
Gowtham S
  • 923
  • 14
  • 39
0
votes
1 answer

EXTJS6.0 Build expandable row grid with column names coming from store data

I want to build a grid table as shown in the image in Extjs6.0, i have built basic grid with static column names and grid data coming from store but want to fetch column names from store and also have expandable rows. Any suggestions on how to…
user4129668
0
votes
1 answer

ExtJS Control flow in MVC Architecture

In this below ExtJS application i want to know how the control goes to PopupForm class when clicked onPopupForm function in MyListViewController. This application use MVC+VM architecture or roughly MVC. Link for the example in fiddle…
user4129668
0
votes
1 answer

sencha touch -- select field in a popup

I'm trying to create a very simple popup with a selectfield that prompts a user to, for example, select a region before the app launches. However, I am facing three issues: a) the dropdown list is shown behind the mask, even though I've…
stackato
  • 1,085
  • 1
  • 19
  • 38
0
votes
2 answers

Chromium how to convert drag and or hold to click?

I'm looking for the best practices with regard to Chromium that would allow me to convert either a "drag" event or a "hold" event into a "click" event. I'm building a touch screen application that runs on a TS-7990 touchscreen that is giving me…
Vinnie Saletto
  • 329
  • 2
  • 5
  • 20
0
votes
1 answer

Setting up Sencha extjs project

I am attempting to set up a Sencha extjs 6 project. I would like to be able to have both the modern and classic packages available. I'm following this set-up tutorial, but am not finding it very helpful. If my understanding is correct, I should be…
etchesketch
  • 821
  • 4
  • 14
0
votes
1 answer

Extjs 6.2.0 List is not displayed on IOS with defaultType as custom ListItem

I'm trying to upgrade sencha touch to Extjs-6.2 Modern, my List items are not displayed in iOS safari & iOS Simulator & inApp-webkit view, I'm using Extjs-6.2.0.103, after setting the item Height in my custom ListItem its displaying the items, but…
Gowtham S
  • 923
  • 14
  • 39
0
votes
1 answer

ExtJs - Save selected file from filefield

I want to upload a file using the extjs6 modern toolkit. Therefor I display a MessageBox with a file chooser. How can I retrieve the selected file into a javascript object after clicking the OK button to upload it (via HTTP POST…
Peter
  • 1,679
  • 2
  • 31
  • 60
0
votes
1 answer

Access controller in extjs kitchensink menu example

I have an ExtJs 6.2. application (modern toolkit) and I want to implement the menu example (the top menu). Therefore I have this code in my Main.js file: Ext.define('MyApp.view.main.Main', { extend: 'Ext.Container', xtype: 'app-main', …
Peter
  • 1,679
  • 2
  • 31
  • 60
0
votes
1 answer

Dropdown menu in ext.js 6 toolbar

I have an ExtJs 6.2. application with a toolbar which is defined in the Main.js as follows: Ext.define('MyApp.view.main.Main', { extend: 'Ext.Container', xtype: 'app-main', requires: [ 'Ext.layout.VBox' ], views: [ …
Peter
  • 1,679
  • 2
  • 31
  • 60
0
votes
1 answer

How to Abstract a base container with some default items in Sencha Extjs 6?

I was trying to develop a base container by extending Ext.Container, which have some default items in it. A subclass should add the items to the child component of the base class and not directly to the container instead. How to do this? May i…
Gowtham S
  • 923
  • 14
  • 39
1 2 3
9
10