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.
Questions tagged [extjs6-classic]
395 questions
0
votes
1 answer
How to find source of custom class in EXTJS
I have this particular code snippet in a JS file:
var fileView = Ext.create('My.ext.File.Panel', {
style: 'border:none;',
loadMask: {
msg: 'Please wait ...'
...
And when i search i can see that…

Prakash K
- 11,669
- 6
- 51
- 109
0
votes
1 answer
How to create a singleton Toast in Extjs
I need to create a single toast on the screen of my application, today if I click multiple times on a button, several toasts are presented.
EDIT:
showToast: function(message) {
var openedToast =…

Roberto Pegoraro
- 1,313
- 2
- 16
- 31
0
votes
1 answer
ExtJs 6 - Getting the objects from the returned JSON through the success function
I am using record.erase to delete a record, and I want to be able to display an error message if the backend is unable to delete the record for whatever reason. I want to be able to display the msg that is returned in the JSON. I assume I can do…

DeputyDylDog
- 200
- 3
- 12
0
votes
1 answer
Trying to bind a store to a ViewModel
I'm used to ExtJs with MVC pattern, and I'm trying to implement MVVM pattern. I'm not able to bind a store to my view.
I have a main grid, and try to open a details grid when selecting a line.
detailsView = mainPanel.add({
xtype: 'rma-details',
…

Lorenz Meyer
- 19,166
- 22
- 75
- 121
0
votes
1 answer
One to many data binding
I have a case where I want to get the value from one input (main input field in fiddle) and bind it to other input fields.
https://fiddle.sencha.com/#view/editor&fiddle/2001
Due to fairly complex architecture, these input fields are in different…

bullettrain
- 958
- 1
- 9
- 17
0
votes
1 answer
ExtJS add tooltip in a element inside iframe
I'm try to use tooltip in a element inside a iframe(generated by htmleditor component).
This is i'm trying:
Ext.tip.QuickTipManager.init();
Ext.create('Ext.form.HtmlEditor', {
width: 750,
height: 250,
renderTo: Ext.getBody(),
…

Lucas Fontes Gaspareto
- 173
- 3
- 12
0
votes
1 answer
Need Horizantal Scroll for Container
Please Somebody help to get Horizontal Scroll for this Example.if add Items Dynamically i got only Vertical scroll bar.
Ext.define('Fiddle.view.main.Main', {
extend: 'Ext.container.Container',
layout: 'border',
items: [{
xtype:…

Natchatra
- 29
- 5
0
votes
1 answer
What happens if extJS trial expires?
I am using extJS trial to learn. In few days, my trial shall expire. What it really means if trial expires. Does CMD tool stop building extJS or there is something else which I need to consider.

Sam
- 122
- 1
- 12
0
votes
1 answer
with extjs grid (with combobox) Select, save and delete data with nested object
I have, for example, the following two objects:
object 1:
{
Id: 1,
Name: 'Menu 1',
MenuSuper: null
}
object 2:
{
Id: 2,
Name: 'Menu 2',
MenuSuper: {
Id: 1
}
}
How can I manipulate grid to save, delete and select this one?
My problem is…

André Cristino
- 95
- 1
- 14
0
votes
2 answers
How to create a base Ext.app.ViewController common to other view controllers?
I want to create an base ViewController for all other controllers used in an ExtJS app.
The problem is that ExtJs is looking for the base class in /classic/src/view instead of /app/view....
Here is an example:
in…

CrazyMenConnected
- 682
- 5
- 21
0
votes
0 answers
ExtJS 6: Force re-download of edited JavaScript file
I am developing a large single-page web application in ExtJS 6 (classic toolkit) that primarily consists of a tab panel. There will eventually be several hundred different "screens" that can be opened as tabs.
The core structure of the app, and…

oogles
- 1,202
- 1
- 20
- 29
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
Extjs not getting Viewport scroll
I need a horizontal and vertical scroll bar for Viewport. With the below code, I get a vertical scroll bar. I've tried multiple ways to get a horizontal bar including scroll.autoScroll:true, scrollable:true, but it is not working.
var bbb = [{
…

Natchatra
- 29
- 5
0
votes
0 answers
sencha architect doesnot allow to add plugins for catesianchart
Am working with sencha archictect4.2.1. We need to use chart and on click of chart series or category it will go to drill down charts.(open a new window and show up charts there). For chart click event we need to add following plugins:
plugins :…

user223614
- 303
- 1
- 6
- 15
0
votes
1 answer
Sencha app watch is not watching imported scss files
I'm using the latest extjs 6 cmd and when I run >sencha app watch in my theme, only var/src/ all.scss is being watched. I'm importing some other sass files but changes are not picked up until I manually refresh the page.
Do I need to include…

Nikos Js
- 199
- 2
- 10