Tagged Questions

441
votes
40answers
145k 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 ...
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 ...
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
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
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
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
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
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
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
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 ...
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
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
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
372 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
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
2answers
5k views

Re-inserting a Record into an extJS Store

The code Ext.onReady( function() { Ext.QuickTips.init(); Ext.namespace('TimeTracker'); TimeTracker.dataStore = new Ext.data.JsonStore( { ...
7
votes
3answers
1k views

ExtJS 3: Two ways of creating custom class: what's the difference?

I'm trying to learn ExtJS and object-oriented JavaScript in general. I've seen people defining classes in custom namespaces in a couple of ways. What's the difference between these two methods? ...
6
votes
1answer
119 views

How can I let users upload files by copy/paste?

I'm trying to create a web app based on ExtJS, and I'm working on the file-upload area of the app. I want users to be able to upload files by copying and pasting them - not just copying and pasting ...
6
votes
1answer
169 views

Is publishing/subscribing to events after UI rendering a best practice regardless of framework?

I've inherited a rather large Javascript/ExtJS3 code base, and there are many instances of invoking events inside of the overridden initComponent method, after the call to ...
6
votes
1answer
3k views

Advice, help needed with ExtJS 4: grid: cell editing: auto edit feature

I searched ExtJS related questions and didn't found any reference, but if I missed it sorry in advance to making duplicate question. I would like to ask some assistance on how to make ExtJS 4 grid: ...
6
votes
3answers
361 views

Best Practices concerning initComponent() in Ext.define()

I'm writing all my components in ExtJS's new MVC fashion using Ext.define(). I struggle a bit whether define properties inside of initComponent() or by simply setting them like property: 42,. Are ...
6
votes
6answers
982 views

free and open source alternative to extjs

I noticed that ExtJS has changed drastically since last time I've checked it out. Right now it can only be used for free in an open source application - otherwise it requires a commercial license. Is ...
6
votes
4answers
1k views

Smart Client vs Ext JS

I'm looking to build a rich UI in the browser, and it seems like these two solutions are the way to go to get the most power and flexibility as quickly as possible. Smart Client seems promising, but ...
6
votes
3answers
906 views

dynamicly load javascript

I use a lot of script in an application, some of them are not required to load the application, I want to load them just before their use if possible, knowing that my application is coded in ExtJS, ...
6
votes
1answer
2k views

ExtJS combobox acting like regular select

I try to use ComboBox on FormPanel, it is defined like this: xtype: 'combo', name: 'Reasons', store: new Ext.data.ArrayStore({ id: 0, ...
6
votes
2answers
6k views

Extjs change fieldLabel after field is rendered. Any better solution?

I examined how ExtJs renders form's fields in dom. To change fieldLabel after field is rendered I find proper dom element and change its innerHTML; /** * Modifies field's label afrer field is ...
6
votes
3answers
16k views

Is there any way to get an ExtJS GridPanel to automatically resize its width, but still be contained inside some non-ExtJS-generated HTML?

I want to include an ExtJS GridPanel inside a larger layout, which in turn must be rendered inside a particular div in some pre-existing HTML that I don't control. From my experiments, it appears ...
6
votes
2answers
19k views

Ext JS Grid Row Background Color Set

How would I go about setting the background colour of an Ext JS Grid row, mainly just the selected item(s). Any help would be greatly appreciated.
6
votes
4answers
4k views

Are There Memory Issues with Ext.js

The UI for an application I work on was recently redone with Ext.js and I have noticed the memory usage of IE seems very large when viewing it. Are there known memory issues with Ext.js when using ...
6
votes
6answers
23k views

Ext RadioGroup - How to Access the value of selected radio button?

I am having some difficulty accessing the value of the selected radio button in a radiogroup. I've attempted a number of different approaches based upon discussion in other posts on the forum and ...
5
votes
2answers
74 views

Migration from ExtJS 3.0 to 4.0

Previously in ext 3.0 we had Tree Panel built from XML response. For that we had custom class extending 'Ext.tree.TreeLoader' This TreeLoader was useful to build tree structure (parent/child nodes). ...
5
votes
4answers
270 views

extJS grid error, JSON data is not being displayed

I've configured my store as: var store = new Ext.data.JsonStore({ url: 'gridData.php', root: 'movies', fields: ['film_id', 'title', 'release_year', 'rating'] }); and then defined my grid as: var ...
5
votes
7answers
403 views

Ext Js IE error only

My web app works fine on Firefox or Chrome but not in IE. It shows me the following message: Object doesn't support this property or method File: ext-all.js - Line: 7 - Char: 6100 Any ideas ...
5
votes
2answers
64 views

How to check whether one class is inhereted of another class?

I'm using Ext4... How to check whether one class is inherited of another class? for example: Ext.define("A", {}); Ext.define("B", { extend: "A" }); Ext.define("C", { extend: "B" }); var a = ...
5
votes
1answer
431 views

ColorField for ExtJS 4.0

Do you know any ColorField implementation for ExtJS 4.x? I try to create my own (looking DateField source code) but the picker background is transparent and I can't fix it :( This is how I create ...
5
votes
1answer
141 views

Pin tabs in a tab panel

i couldn't find a better title, but i would like to build a tab panel with two tabs that are always present and a undefined number of other tabs that are generated dynamically by the user. I would ...
5
votes
1answer
2k views

Display multiple fields in ExtJs 3.3 Combo box

I've opened up an ExtJs project that I've not had my head in for some time, and this is baffling me. I've an Ext.form.ComboBox that uses a remote JSON store to list users. I use an XTemplate to ...

1 2 3 4 5 30