1,144 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
2
answers
260
views
How to render a font awesome icon when comparing from a value - Ext JS
I have a Grid, and on the grid line I want to render an awesome font icon depending on a condition.
text: UITEXT.GENERAL_STATUS,
dataIndex: 'status',
sortable: false,
flex: 0.5,
align: 'center',
...
0
votes
0
answers
47
views
I want to show status without refreshing page
{
text: 'SFTP Upload Status',
width: 115,
align: 'center',
xtype: 'actioncolumn',
sortable: false,
...
0
votes
0
answers
97
views
Extjs 5.1 Ext.getStore('example').load() error 404 not found model
I have a problem with the store, it shows the console "404 model not found" this happens when clicking on the combobox which has the store defined, when I do a .setstore to the combobox also ...
0
votes
1
answer
355
views
how can I disable checkbox for the same grid row using listener?
I have these two grid checkbox columns
xtype:'checkcolumn',
dataIndex:'FUN',
id:'fun',
listeners:{checkchange:'onFunChecked'},
xtype:'checkcolumn',
dataIndex:'FUN2',
id:'fun2',
listeners:{checkchange:...
0
votes
0
answers
49
views
Extjs-When trying to download a zip file , zip file getting corrupted
when trying to get zip through postman we are getting zip file correctly , but when I'm trying to get using ajax call zip file I'm getting is corrupted . I used fetch function also but its not working
0
votes
1
answer
102
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
69
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
1
answer
565
views
How to add a MessageBox prompt in Extjs with mandatory input
Is there any way to add mandatory check for the input to the MessageBox prompt in Extjs like we use allowblank for textfields?
0
votes
1
answer
231
views
Execute synchronously MessageBox show function in ExtJs-5
I want to execute a Ext.Msg.show() function synchronously in ExtJs-5
onButtonClick : function() {
1. some code...
2. Ext.Msg.show({
title : 'Confirm Please',
msg : 'Please be ...
0
votes
0
answers
155
views
Scrollbar disappear in Touchscreen Monitors for Sencha ExtJS version 5.1.1 application
Need some suggestions, looking more of a work around for prod issues. We have Sencha ExtJS version 5.1.1 application with Classic toolkit, for Touch screen devices scrollbar just disappearing. From my ...
0
votes
1
answer
274
views
Is there a way you can load a Ext JS ComboBox with the last selected option locally?
I want to be able to load whatever option was selected last in my Ext JS ComboBox when I refresh the page. Currently with this code below it just loads the first option 'all' every time. I know there ...
0
votes
1
answer
205
views
Hiding all columns while grid is loading in ExtJS
I am working with ExtJS 5 and am trying to hide the columns of an internally defined grid that extends Ext.Component. I will first explain the motivation behind this.
The thing is, while the grid is ...
1
vote
0
answers
61
views
Many-to-Many models association, matrix table with additional fields
My database is structured with 3 tables: Product, Operation and a junction table Product_Operation for manage many to many relationship.
The junction table is defined with more than two columns, in ...
2
votes
1
answer
92
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
213
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 ...