Sencha Ext JS is a JavaScript framework for building Rich Internet Applications (RIAs) that run in web browsers.
0
votes
0answers
8 views
Windows 7 IE* - Tab not loading data in winxp it's fine
I am using ext js 3.3.x version in which inside a tab i am loading a IFRAME with a form. In winXp IE8 it works fine but on win7 IE8 the tab data which is iframe not loading at all.
In one function ...
0
votes
0answers
7 views
Ext JS : iframe load event for downloaded file from Chrome
I am having a problem with onLoad event of an iframe on Google Chrome.
I created an iframe and set value for its "src" attribute to get a file from server.
While server is processing, a loading ...
0
votes
0answers
6 views
GXT 3 spinnerField validation
I want to validate that user cannot change spinner value manually by typing in text box of spinner.
For example a field sales multiple = x which I fetched from server not fix.
and displays a spinner ...
0
votes
1answer
7 views
extjs inheritance and correct reference
hey all so I have this class that makes a panel
Ext.define('ryan', {
constructor:
function(){
Ext.create('widget.window',{ //stuff})});
then I try to instantiate and object
...
0
votes
1answer
4 views
ExtJS : datefield showing up as blank on selection of a grid row
This is a wierd problem that I am seeing. I populate my store and then the Grid using that store. Also, i used loadRecord(record) to populate a form ( Ext.form.Panel ) basing on the row selected in ...
0
votes
1answer
15 views
ajax extjs having problems with up/down methods
hey guys so i'm trying to add a simple handler on a button in my window. The handler just sets a value from a text file to a combobox item id = 'wildanimal'
items: [{
itemId: 'button1',
...
0
votes
0answers
8 views
ExtJS - JavaScript assets specified in app.json not being loading?
I have the following references in my app.json file
"js": [
{
"path": "https://ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js",
"remote": true
},
{"path": ...
0
votes
1answer
13 views
ExtJS - How to Parse SOAP (WSDL) XML Response Object into Model
I am using ExtJS and I made a service call using SOAPClient as such:
var url2 = "https://serviceUrlGoesHere/MyService";
var pl = new SOAPClientParameters();
pl.add("arg0", false);
...
0
votes
2answers
9 views
Extjs where to add a dynamically created panel object to my existing panel
In my code, I create a panel object like below:
var grid = Ext.create('Ext.grid.Panel', {});
Then I am trying to define a widget which should contain the above panel as one of it's items.
I got ...
1
vote
0answers
6 views
Fully update pie chart using ExtJS 4.2.0 and external datasource
I am currently creating a "drill-down" style pie chart, where clicking on a "slice" should update the pie chart with data within that slice.
Imagine for example an E-commerce report which shows sales ...
1
vote
1answer
10 views
Sencha Touch 2 - Execution sequence
Does anyone know or is aware of an article about the function execution sequence
in sencha touch 2 ? I think would help us, beginners, alot to know where to place our code.
So I would like to know ...
1
vote
1answer
19 views
Custom Components with child items: it's possible to change child configs?
I'm trying to see if creating a custom component with child elements it's a good approach. In most of my forms I will have some fields horizontally aligned, with the same size.
My first though was to ...
0
votes
0answers
23 views
Ext: How to evaluate incoming inputs?
How to evaluate incoming inputs? Below is how I`m trying to get the JSon input:
var store =new Ext.data.Store({
autoLoad : true,
proxy : new Ext.data.HttpProxy({
url: ...
0
votes
0answers
11 views
dataview in senchatouch loosing sorted by on update
I have a navigationview which has a main list. on select of the dataview, I push out a detail view. then, when I push the back button it takes me right back where I was. However, if I update a record ...
0
votes
1answer
13 views
Trying to work with down() method from ExtJS 4.2.1
I am trying to find a specific element from my page using ExtJS 4 so I can do modifications on it.
I know its id so it should not be a problem BUT
-I tried Ext.getCmp('theId') and it just return me ...