Tagged Questions
Ext JS is a JavaScript framework for building Rich Internet Applications (RIAs) that run in web browsers.
441
votes
40answers
146k views
Which JavaScript framework (jQuery vs Dojo vs … )?
There are a few JavaScript frameworks/toolsets out there, such as:
jQuery;
Dojo;
Prototype;
YUI;
MooTools;
ExtJS;
SmartClient; and
others I'm sure.
It certainly seems that jQuery is ascendant in ...
36
votes
13answers
25k views
Any suggestions for testing extjs code in a browser, preferably with selenium?
We've been using selenium with great success to handle high-level website testing (in addition to extensive python doctests at a module level). However now we're using extjs for a lot of pages and ...
26
votes
7answers
6k views
Best Way to automatically compress and minimize JavaScript files in an ASP.NET MVC app
So I have an ASP.NET MVC app that references a number of javascript files in various places (in the site master and additional references in several views as well).
I'd like to know if there is an ...
21
votes
5answers
884 views
Do you know of a bleeding-edge HTML5 leveraging, legacy-ignoring JavaScript framework?
What's the best framework (sort of jquery, extjs, etc like) to use if I'd like to intensively use all the freshest technologies of the HTML5 stack provided by modern browsers (Firefox 7, Safari 5, ...
21
votes
8answers
4k views
What is ExtJS philosophy? Single page application?
I need to write my next project using ExtJs.
It's a nice Javascript lib but I don't fully understand the idea behind it.
Take the docs page for example:
http://www.extjs.com/deploy/dev/docs/
Am I ...
20
votes
7answers
5k views
A free alternative for ExtJS
I am looking for a framework such as ExtJS with similar controls and the important thing: The Layout. ExtJS is my favorite framework, but I can't afford it at the moment for some commercial projects I ...
17
votes
10answers
12k views
The dangers of using ExtJS on a big project with RoR?
We are developing a considerably big application using Ruby on Rails framework (CRM system) and are considering to rewrite it to use ExtJS so that Rails would just do the data handling, while ExtJS ...
16
votes
8answers
696 views
Is this scenario in compliance with GPLv3?
For arguments sake, say that we create a web application , that depends on a GPLv3 licensed component, lets say Ext JS.
Based on Section 0 of the license, the common notion is that the entire web ...
15
votes
6answers
22k views
Sencha Touch - looking for a good tutorial / getting started for a content application
I'm trying to build a mobile "content" application that will be used to display many pages of mostly text, using Sencha Touch (based on ExtJs). I'm familiar with JQuery & JQTouch; I've never used ...
15
votes
2answers
727 views
Getting started with ExtPascal: some minimalistic tutorials or code examples needed
Tonight I tried to attempt an ExtPascal application. I am using Delphi 2009.
I followed all the steps in the Getting Started section and after some fights I was able to type
...
15
votes
1answer
9k views
What does ExtJS ComboBox triggerAction: “all” really do?
I tried to create a simple ComboBox:
var combo1 = new Ext.form.ComboBox({
store: [1,2,3],
renderTo: document.body
});
But written this way it acts strangely:
When you first time pop open the ...
14
votes
4answers
23k views
14
votes
4answers
2k views
Javascript: Uploading a file… without a file
I am trying to fake a file upload without actually using a file input from the user. The file's content will be dynamically generated from a string.
Is this possible? Have anyone ever done this ...
12
votes
2answers
212 views
Dependent field in EXT JS
Does EXT JS provide a mechanism for dependent fields? E.g. password field should not be active until the login has been entered.
12
votes
5answers
20k views
How to retrieve JSON Data Array from ExtJS Store
Is there a method allowing me to return my stored data in an ExtJS Grid Panel exactly the way I loaded it using:
var data = ["value1", "value2"]
Store.loadData(data);
I would like to have a user ...
12
votes
7answers
12k views
Javascript library for building desktop-like web application: ExtJS, jQuery, YahooUI, Mocha, SproutCore, Cappuccino, others?
I am evaluating several Javascript UI toolkits for building web applications that have a desktop-like feel, mainly because of dialogs and window management.
I looked at several options - here are my ...
12
votes
4answers
6k views
Best Way to Organize an ExtJS Project
I've just started developing an ExtJS application that I plan to support with a very lightweight JSON PHP service. Other than that, it will be standalone. My question is, what is the best way to ...
11
votes
8answers
350 views
What is the value of var me = this;
I find this pattern all over the ExtJS source code.
method: function() {
var me = this;
...
me.someOtherMethod();
}
Why don't they just use this? Is there some advantage to always often ...
11
votes
1answer
2k views
extjs 4 event handling tutorial
I've recently started learning ExtJS, I'm looking for a good ExtJS 4 event handling tutorial. I have no experience of any previous versions of ExtJS.
From reading various manuals, guides and ...
11
votes
3answers
28k views
ExtJS grab JSON result
I'm generating JSON response from PHP witch looks like this:
{ done:'1', options: [{ message:'Example message'},{message:'This is the 2nd example message'}]}
I want to grab these results using ...
10
votes
3answers
2k views
What is the need of JSF. When UI can be achieved from css html javascript jQuery?
I was reading about JSF that its a UI framework and provides some UI components. But how is it better or different from number of components that can are available from extjs or jQuery or combination ...
10
votes
2answers
4k views
ExtJS : handling browser exit event (click on cross-exit)
First of all, thank you for reading my question.
I would like to know if there is any way to handle the browser exit event.
For example, I would like to send a query when the user click on the ...
10
votes
7answers
10k views
making certain cells of an ExtJS GridPanel un-editable
I currently have a GridPanel with the Ext.ux.RowEditor plugin. Four fields exist in the row editor: port, ip address, subnet and DHCP. If the DHCP field (checkbox) of the selected row is checked, I ...
10
votes
7answers
43k views
JQuery vs Dojo vs ExtJS [closed]
Possible Duplicate:
Which Javascript framework (jQuery vs Dojo vs … )?
I have very short time to learn any JavaScript framework.
Considering the all-in-one solution factor, ...
10
votes
5answers
3k views
How to use Ext JS for role based application
I am planning to use Ext JS for a large application. The application's features are role based. When user login, they only see menu and screen features related to them. My server side technology ...
9
votes
4answers
139 views
ExtJS 4 Naming Conventions
I was discussing with my colleagues the correct naming conventions for classes, variables and objects etc within ExtJS 4, but we all had differing views.
Is there an "official" stance on this?
9
votes
2answers
3k views
jQuery Mobile Vs Sencha Touch
I am planning to create a mobile or rather a tablet version of my existing web app. The devices supported would be iPad, Xoom (android).
I am not sure which JS library to use jQuery Mobile Vs Sencha ...
9
votes
5answers
384 views
Is Ext JS a superset of jQuery?
So jQuery handles DOM manipulation, event handling, and special effects. Ext JS also does that, plus has a lot of built-in UI components.
Here's the question. Is there anything substantial that ...
9
votes
4answers
5k views
JQuery vs ExtJS
We are planning for development of a complete new GUI. We were very much happy with JQuery previously which we introduced in our old product recently. It made things easy, classy and fast.
We are ...
9
votes
6answers
4k views
Is jQuery compatible with ExtJS?
I believe Ext.js was using jQuery, but I'm not sure. Does anyone know if there is full compatibility with jQuery and Ext.js?
9
votes
8answers
3k views
Will ExtJS die?
I look at ExtJS, and it appears to provide many of the RIA features that more bulky suites such as Flex provide, without the flash requirement. However, as Open-source initiatiatives such as jQuery-UI ...
9
votes
13answers
26k views
Using ExtJS in ASP.NET [closed]
I don’t have advanced knowledge in JavaScript, and I am trying to learn how to use ExtJS framework in ASP.NET (C# or VB.NET) environment. I’ve got couple of samples, but was unable get the project ...
8
votes
3answers
764 views
ExtJS 4 - Mark a red asterisk on an required field
I have this problem where I need to add a red asterisk beside a fieldLabel when a field is marked as "required" (or allowBlank: false)
In ExtJS3, we can have this hack easily by overriding ...
8
votes
2answers
178 views
Open Source GPL Sencha Ext JS 4.0 vs Commercial
I have an idea for a commercial SaaS application which I would like to build using Sencha's Ext JS framework. I understand the need to pay for a commercial license before turning around and selling ...
8
votes
3answers
2k views
ExtJs 4, How to prevent xtype: 'combo' from collapsing when already selected item clicked?
I have ComboBox. When I click on item from expanded list, ComboBox select this item and collapse. If I click on already selected item it also collapsing.
Is there a way to "stop" ComboBox collapsing ...
8
votes
1answer
4k views
How to access nested models from store in ExtJs 4
I just downloaded the final version of ExtJs 4 and I'm trying to implement some things using new Model approach.
For instance I have a model named SetupModel, it has 2 nested models Users, Reports.
...
8
votes
3answers
6k views
Replacing Ext.reg() (xtype) in ExtJS4?
I want to use the MultiSelect from 3.3 in Ext JS 4, as described in this previous question:
Why are the Ext JS multiselect item selector files not included in the Ext JS 3.3 download and where are ...
8
votes
3answers
10k views
How to post json data with extJS
I'm a bit of a newb with both extJS and json. What is the most painless route to POSTing json data using extJS? I'm not really interested any GUI features, just using the framework to send some sample ...
8
votes
2answers
13k views
8
votes
2answers
9k views
Word-wrap grid cells in Ext JS
(This is not a question per se, I'm documenting a solution I found using Ext JS 3.1.0. But, feel free to answer if you know of a better solution!)
The Column config for an Ext JS Grid object does not ...
8
votes
6answers
10k views
Better way to call superclass method in ExtJS
All the ExtJS documentation and examples I have read suggest calling superclass methods like this:
MyApp.MyPanel = Ext.extend(Ext.Panel, {
initComponent: function() {
// do something MyPanel ...
7
votes
4answers
373 views
ExtJS/Sencha - Add button to DateField popup, to clear date
I have a DateField:
editor : new Ext.form.DateField({ /*Ext.ux.form.Custom*/
allowBlank: true,
format: 'm/d/Y',
width : 120,
enableKeyEvents: true,
listeners: {
...
7
votes
2answers
521 views
Faster ExtJs 4 learning methodology
How can a JQuery Ninja cross over to ExtJS as fast as possible? Given that ExtJS 3.x is now obsolete, how can one quickly grip concepts in Ext JS 4. Hardly can one find a book on Ext JS 4 online. The ...
7
votes
1answer
1k views
Extjs syncing a store gives me a url is undefined error under specific conditions
I have 4 grids that have the drag and drop plugin enabled. Their initial grid is dependent on a value from the db called state_id.
When I drop the selected row into a new grid, I update the state_id ...
7
votes
2answers
1k views
Learning ExtJS4
I'd like to use ExtJS4 for my next project. However, I'm new to Ext and not that well versed in Javascript's finer points either.
There are a couple good books about ExtJS3 available. Should I learn ...
7
votes
2answers
543 views
extjs Combobox typeahead / auto selection for single charactor
I am using extjs combobox for a sex field. It have two value "M" and "F". I want to make it usable with keyboard:
[
xtype: 'combo',
typeAhead: true,
...
7
votes
2answers
3k views
How do I get the selected index of an ExtJS Combobox
What is the certified way to determine the index of the currently selected item in a ComboBox in ExtJS?
Is there a difference on how to do this between ExtJS 3.x and 4?
var combo = new ...
7
votes
4answers
3k views
Create an extension with an xtype in ExtJS 4
I am used to ExtJS 3.X, but am struggling with ExtJS 4.
I want to create an extension of a grid and be able to use an instance of the grid with the xtype. As far as im aware, I have to set the alias ...
7
votes
3answers
3k views
Dynamic Model with ExtJS 4
With ExtJS 3.x, I was able to use the "fields" property of a Store, but it seems with ExtJS 4 I have to absolutely use a Model. It's fine, but in my case, it's not a static Model, and I need to define ...
7
votes
3answers
5k views
Sencha Touch MVC — recommended ways of passing data through the controller?
I'm using Sencha Touch for a mobile app and am using the MVC functionality in it. I like Sencha quite a bit but I'm having a little trouble when it comes to passing data from one 'screen' to the next ...