Search Type: Posts; User: Sébastien.Volle
Search: Search took 0.02 seconds.
-
29 Aug 2012 10:54 PM
- Replies
- 2
- Views
- 390
Thanks! And sorry if this is a dupe. I could not find a similar thread.
-
29 Aug 2012 6:41 AM
- Replies
- 2
- Views
- 390
Consider the following snippet from Ext.dom.Element:
syncContent: function(source) {
source = Ext.getDom(source);
var me = this,
sourceNodes =... -
13 May 2012 11:52 PM
- Replies
- 26
- Views
- 5,702
Issue still present 4.1 GA /:)
-
13 May 2012 11:21 PM
- Replies
- 1
- Views
- 325
I can confirm this. Definitely a bug for me.
EDIT:
Bug thread:... -
26 Apr 2012 1:29 AM
- Replies
- 4
- Views
- 1,176
The problem is that the buildUrl() method of Ext.data.proxy.Rest tries to extract the id of the record directly from the record if it's present in the operation object, or from the operation.id...
-
25 Apr 2012 5:49 AM
- Replies
- 1
- Views
- 410
Ext.grid.property.Store does not implement the removeAt() method which it inherits from Ext.data.Store. But the problem is that removeAt() passes a record to the remove() method, but the actual...
-
20 Apr 2012 6:57 AM
- Replies
- 2
- Views
- 220
Right, I figured as much. From what I've seen, it's not implemented by any Editing subclass (yet), but it's true it's unrelated to the real issue.
Thanks. -
20 Apr 2012 6:34 AM
- Replies
- 2
- Views
- 220
Consider the following code, which can be found in Ext.grid.plugin.Editing :
beforeEdit: emptyFn,
startEdit: function(record, columnHeader) {
var me = this,
context =... -
20 Apr 2012 1:09 AM
- Replies
- 4
- Views
- 1,176
On 4.1RC3, a TreeStore using a REST proxy should pass record ids as part of the URL, like this: /path/to/ressource/<id>.
Instead, it passes the id as a query string parameter, like this:... -
19 Apr 2012 12:51 AM
- Replies
- 2
- Views
- 437
Ok, turns out adding the following line at the start of the class constructor fixes the problem:
this.mixins.observable.constructor.call(this);
This was not required in 4.0 as far as I... -
19 Apr 2012 12:44 AM
- Replies
- 2
- Views
- 437
Ext version tested:
Ext 4.1RC3
Browser versions tested against:
Chrome 18 (Linux)
Description:
Error when calling addListener on an object instance using the observable mixin. -
18 Apr 2012 6:24 AM
- Replies
- 4
- Views
- 891
This fix works also on Chrome, thanks.
-
18 Apr 2012 6:04 AM
- Replies
- 0
- Views
- 234
This question is a follow up to http://www.sencha.com/forum/showthread.php?144756-Why-doesn-t-Ext.create(-Model-...)-load-associated-model-data
As of 4.1 RC3, associated model data is still not... -
18 Apr 2012 5:19 AM
- Replies
- 11
- Views
- 4,506
From what I've seen in 4.1 RC3, Ext.create('Model', ...) or new Model(...) still does not create association data in the Model instance. One still have to go through a reader for the associated data...
-
28 Feb 2012 2:54 AM
- Replies
- 6
- Views
- 1,272
The first post.
If memory serves, you have to hack into the load() method of Ext.data.TreeStore and make sure the options object have a "records" property like that:
options.records = [node];... -
28 Feb 2012 2:53 AM
- Replies
- 2
- Views
- 1,137
I can now observe another issue with Ext.tip.ToolTip, using delegate and the "beforeshow" event.
If a "beforeshow" listener return false and as such prevents the tooltip from showing, the tooltip... -
27 Feb 2012 7:06 AM
- Replies
- 6
- Views
- 1,272
I suggested a workaround at the end of the OP.
-
6 Jan 2012 7:30 AM
- Replies
- 8
- Views
- 2,688
This is how I do it as well with Ext JS 4.x and this leaves a lot to be desired.
It completely breaks the encapsulation and API provided by Ext.data.Model and requires you to dwell in the bowels... -
27 Dec 2011 1:30 AM
- Replies
- 7
- Views
- 1,469
Ah. Well, I was under the impression that using Ext.create was best practice according to the documentation and tutorials.
-
27 Dec 2011 1:27 AM
Jump to post Thread: LoadMask crash by Sébastien.Volle
- Replies
- 9
- Views
- 2,292
The problem is still present in Ext JS 4.1 beta.
-
1 Dec 2011 2:27 AM
- Replies
- 3
- Views
- 1,041
Great! I'm a bit concerned that resetting the page number when filtering is not necessarily desirable in *all* situations but it's seems to be the sensible thing to in a vast majority of cases. Maybe...
-
30 Nov 2011 2:26 AM
- Replies
- 3
- Views
- 1,041
It seems the filter() method of Ext.data.Store does not reset store.currentPage to 1, which seems odd because it doesn't make much sense to retain the same page number when filtering.
I'm not... -
16 Nov 2011 12:06 AM
- Replies
- 2
- Views
- 491
Oh, I did not realize we're in the Premium Help section actually. There must have been some tab confusion on my part. So yes, I would be grateful if you could move this thread to the Bug section, or...
-
15 Nov 2011 7:23 AM
- Replies
- 2
- Views
- 491
I have a couple questions about the implementation of Ext.Ajax.abort and Ext.Ajax.onComplete.
Here is the code of Ext.Ajax.abort as of ExtJS 4.0.7:
abort : function(request) {
var me =... -
27 Oct 2011 11:16 PM
Jump to post Thread: Overall Performance by Sébastien.Volle
- Replies
- 15
- Views
- 3,542
Well, I use a faster CPU (C2D E7500 @ 2.93GHz) but that doesn't explain the 2x difference in timing for opening the window. Maybe there are other factors at play (GPU acceleration?)
Results 1 to 25 of 56
