1,787 questions
0 votes
1 answer
76 views
how to define Ext.elevateFunction
"I can't find Ext.elevateFunction defined anywhere in the ExtJS documentation, yet it's being used in the codebase. I'm curious to know how it's defined." Here is the usage of Ext....
0 votes
1 answer
67 views
Extjs - get SVG image element by ID inside qtip
I am using ExtJS 4.1.3. I have a grid panel, where I have a grid column with some text, defined as such: { xtype: 'gridcolumn', dataIndex: 'item1', text: 'Item 1', flex: 1, ...
0 votes
1 answer
107 views
ExtJs - delay in rendering column list in table when adding dropdown from column list
I'm trying to make a drop down button with a list of columns in a table. I created this code, but the problem is that when the code is executed, there are no columns in this yet, so the array is empty....
0 votes
0 answers
47 views
EXTJS Piecharts are not showing legend for dynamic data
Hello I have 2 pie charts one with static data and one with dynamic. The static piechart shows the legend however the dynamic one doesnt. Its the same code for both one. Both have the same fields from ...
0 votes
1 answer
101 views
How to control tab button cursor pointing in horizontal direction
In EXTJS how we can control tab cursor movement in form page , currently I have textfields in formpanel and when pressing tab button its moving in vertical direction I want to move that in horizontal ...
0 votes
1 answer
124 views
EXTJS 4.2.1 Legend not fitting completely in panel
I have made a few piecharts and each piechart has its own panel. The problem is that the legends of each pie charts are not fully displaying they are being cut off as there is not much width available ...
0 votes
1 answer
68 views
Extjs: Remove child tags from tagfield when parent tag is removed
I have two tag fields. 1-Parent tag 2-Child tag Parent tag includes 5 categories i.e a,b,c,d,e Child tag includes the corresponding tags from parent Ex- If a user selects parent tag 'a'(or a,b,c) or ...
0 votes
0 answers
113 views
Extjs Iframe - displays "cannot connect error message"
I have an extjs iframe created as below which gets rendered onto a page when called using its xtype. However, the page displays "cannot connect to" the URL I specified in src parameter error ...
0 votes
1 answer
873 views
Extjs iframe - Embedding content from another page into an extjs application
I am new to working with iframes in extjs. I am looking to embed content from another page (another URL) into an existing extjs application. Is extjs iframe the correct way to go about it? if so, how ...
0 votes
1 answer
193 views
Setting the pageSize of Extjs bufferedstore based on a config file
I have an Extjs bufferedstore as below: Ext.define('myStore', { extend: 'Ext.data.BufferedStore', requires: [ 'myStoremodel' // model that the store takes in ], storeId: 'myTeststore', model: '...
0 votes
1 answer
221 views
Searching the value does not load the view with searched data [Shopware 5]
I have created a backend window and added the search functionality. Whenever i search any value lets say 5004 The console.log(store.data.items) on the change event in ExtJS first shows all the results ...
0 votes
1 answer
259 views
How to initialize the individual tabs data on click on the Tab menu in TabPanel in ExtJs?
I have a tab panel in Ext Js 4 and having several tabs. I have independent panels for each tabs and that is linked to the Tabs through xtype. Now the problem is that all the api calls of each tab are ...
2 votes
1 answer
91 views
Ext Js error when using ext-gen (caractere incorrect)
I'm new to working with Ext Js. I downloaded it using npm and then followed the documentation on the website, when I tried to create my first application, I got an error saying "caractere ...
0 votes
0 answers
212 views
Preventing to create an empty row in grid when clicked outside of a grid row extjs
I am not much experienced in Extjs. I have a grid. It has one column [IP Address]. There are two tabbed buttons provided 'Add' and 'Remove'. On click of 'Add', adds an IP to grid and 'remove' removes ...
0 votes
0 answers
132 views
How to add dirty indicator( red indicator) to a field in grid after editing in ExtJS editable grid?
How can I show the field is dirty (usually red triangle in the top left corner of the field) in an editable grid whenever that field is edited. Is there any easy technique to show it ?