Search Type: Posts; User: harel
Search: Search took 0.02 seconds.
-
3 May 2013 6:03 AM
- Replies
- 1
- Views
- 111
I can't seem to get a Ext.ux.TreePicker to hide the root node. I tried overriding the createPicker call but then fail to load the data into the tree drop down...
Anyone ran into this before?
Thanks -
31 Jul 2012 3:08 PM
- Replies
- 2
- Views
- 674
Yes the example works fine for me...
-
30 Jul 2012 11:22 PM
- Replies
- 2
- Views
- 674
I have an Ext 3.4 grid with stateful:true, a stateId, and each column in the column model has an id.
Yet when I resize columns I don't see any state cookie saved, and the column widths are not... -
14 May 2012 2:10 PM
- Replies
- 7
- Views
- 903
Yes, I was using dynamic loading. With ext-all the error appears to go away (after I explicitly enabled Ext.Loader), though I was hoping to keep on using dynamic loading.
Is there an issue with... -
13 May 2012 6:51 PM
- Replies
- 7
- Views
- 903
The store is below. Note that its loading a fixed json file. The 'translate' call is to translate some keys fron the json to the right language based on selected locale.
However, I did manage to... -
12 May 2012 2:41 PM
- Replies
- 7
- Views
- 903
Thanks.
I'm seeing this error in a few other places, but this is the one that the stack trace passed through one of my components. If I remove the 'callParent' call, the error goes though of course... -
12 May 2012 1:47 AM
- Replies
- 7
- Views
- 903
I'm getting the following error/stacktrace after upgrading from 4.07 to 4.1 (Chrome).
The error appears to originate (or pass through) from a component extending Ext.tree.Panel:
Uncaught... -
1 May 2012 4:58 AM
- Replies
- 4
- Views
- 1,863
For the sake of posterity and history, I'm adding the solution I used here.
I added the following listener to the selection model:
listeners: {
selectionchange: function(sm) {
... -
7 Dec 2011 2:11 AM
- Replies
- 5
- Views
- 770
I ended up using a message bus approach with an observable at the top level of my application used to channel messages from one component to another when those component don't have an ancestry...
-
5 Dec 2011 7:49 AM
- Replies
- 5
- Views
- 770
Yes, when I capture it like that from the model itself it works but now I need to figure out why is it not being caught by any other component.
-
5 Dec 2011 7:14 AM
- Replies
- 5
- Views
- 770
Yes but I want to capture the event on another component. The model/record instance is the one ultimately firing the event. Once fired I want to update another component.
-
5 Dec 2011 3:44 AM
- Replies
- 5
- Views
- 770
Hi ,
I have a mixin which adds an event (bubbled) to a Model instance its mixed in to and fires it when a method is called. The firing bit works but no matter where I place my listener for that... -
16 Nov 2011 4:11 PM
Jump to post Thread: Taking Ext Js Application Offline by harel
- Replies
- 7
- Views
- 1,081
You can use the browser's local storage to store data for offline usage. You'll probably have to ensure all of the javascript files have loaded fully including the entire ext framework etc.
-
15 Nov 2011 4:57 PM
- Replies
- 0
- Views
- 229
Hi
I'm trying to create models which are associated to other models via a 3rd connecting table.
The structure is similar to:
Contact table: id, name
Company table: id, name
Address table: id,... -
15 Aug 2011 2:13 PM
- Replies
- 9
- Views
- 3,000
Instead of
var UserId = UserId || '';
use:
var UserId = config.UserId || '';
The argument UserId is part of your input config, not an argument by itself. -
14 Aug 2011 3:04 PM
- Replies
- 1
- Views
- 537
It appears that moving the calls to Ext.create into overriden initComponent calls solved the problems and I assume its to do with the timing of files loaded and the way browsers cache them etc.
So... -
14 Aug 2011 11:30 AM
- Replies
- 1
- Views
- 537
Hi
I'm having a weird problem working on a new (mvc) ExtJs 4 app.
Many times, I'd be getting errors such as below, pointing to a line in one of my own component files which call up another... -
16 Jul 2011 7:55 AM
- Replies
- 9
- Views
- 3,000
Excellent, that's perfect. I can see where my confusion started as well, which makes the transition to ext4 smoother now: I was fixated on initConfig that I ignored callParent.
Thanks
Harel -
16 Jul 2011 5:05 AM
- Replies
- 9
- Views
- 3,000
I think you missed my point: I'm trying to dynamically create stores that send different url parameters via the proxy. Hence the use of constructor. Straight up stores as you described are not a...
-
16 Jul 2011 12:56 AM
- Replies
- 9
- Views
- 3,000
Hi,
I'm migrating the following ext3 function which returns a store, to an ext4 object extending Store.
From:
getFieldSetStore: function(name, selectedValue) {
return new... -
12 Jul 2011 9:24 AM
- Replies
- 3
- Views
- 495
I augmented your include approach a little and came up with the following which works:
Ext.Loader.setPath('Locales', './app/locales')
Ext.namespace('MyApp'); // had to declare the add namespace... -
12 Jul 2011 9:03 AM
- Replies
- 3
- Views
- 495
The problem with these approaches is that in the second option the MyApp namespace and application are not yet created. The same problem exists with including it as a separate script file.
I am a... -
12 Jul 2011 1:13 AM
- Replies
- 3
- Views
- 495
Hi there,
I am using Ext4's MVC application model. In my Ext.application call I have a requires property which loads up a few js files (libs, generic utils etc).
I am also loading one file which... -
2 May 2011 12:37 PM
- Replies
- 31
- Views
- 4,419
Thanks @tryanDLS. I couldn't find a link to the online docs (I tried without the .1 which didn't work). I know the docs are in my download but I have use the online version out of habit.
-
1 May 2011 3:16 PM
- Replies
- 31
- Views
- 4,419
First I have to add a +1 on the tabs. I was always praising extjs api browser for its usability and I can't do it now.
I'm still working on Ext 3.x apps - Why are you forcing me to view 4.0 docs?...
Results 1 to 25 of 45
