Search Type: Posts; User: Nickname
Search: Search took 0.03 seconds.
-
27 Dec 2011 8:37 AM
- Replies
- 7
- Views
- 1,471
Hi,
is there any number how much slower Ext.create() is?
Looked at the ClassManager file and it normally should just lookup the class definition in an object and then with the "Instantiator"... -
16 Dec 2011 5:58 AM
Jump to post Thread: Ext.menu.Manager - dependencies by Nickname
- Replies
- 5
- Views
- 2,296
A short finding on performance "optimizations" in Ext4:
Ext.element#hasCls() and Ext.element#toggleCls() uses browser native DOMClassList, because Ext.supports.ClassList is set to true on my... -
15 Dec 2011 10:04 AM
Jump to post Thread: Ext.menu.Manager - dependencies by Nickname
- Replies
- 5
- Views
- 2,296
I think LesJ is right.
Ext.menu.Manager is a singleton, which calls init only if a Ext.menu.Menu gets registered. It is not needed to instantiate the singleton.
Of course there could be some... -
13 Oct 2011 11:24 PM
- Replies
- 7
- Views
- 9,682
Hi,
the problem could be caused by several problems.
First thing is, that I did not get it to work with IE6/IE7 (IE8 not tested).
When I tried to get it to work with IE7, I started to refactor... -
27 Aug 2011 6:00 AM
Jump to post Thread: Is this forum valid any more? by Nickname
- Replies
- 43
- Views
- 5,125
On the bug reporting topic: I do not try to report bugs anymore. Maybe with 4.1 and a clear point of what should be fixed and what not.
4 weeks ago I escalated 4-6 bugs to abe elias and he wanted... -
15 Aug 2011 2:54 AM
Jump to post Thread: Ext.view.View itemadd event bug by Nickname
- Replies
- 5
- Views
- 1,352
Would anyone mind to report this as a bug using the bug report template?
I'm currently unable even to add a record into the store!??!
if(Ext.ComponentQuery.query('gridpanel').length > 0)... -
9 Aug 2011 8:39 AM
- Replies
- 7
- Views
- 9,682
Thanks for reporting.
default user was deleted and if there is no user to map the ACL rules... you experienced the results :| Adding to bug list...
Should work again (and I have to think of... -
9 Aug 2011 6:12 AM
- Replies
- 11
- Views
- 3,130
Nice extenstion! Looks very good.
We cannot see the source, but from the example call you provided, the Image is directly configured. Would be nice, if you can configure "iconCls" and use CSS... -
9 Aug 2011 6:04 AM
- Replies
- 11
- Views
- 2,513
There is the filter method. You can add the filter in the afterRender event of the gridPanel or maybe in the store load event.
I use this in the grid panel
... -
8 Aug 2011 8:02 AM
- Replies
- 8
- Views
- 1,669
I know I shouldn't do this, because for me it looks like really bad practice, but here you go. A first try. No support or any kind of "why do several other things not work anymore"!
Version as an... -
8 Aug 2011 12:55 AM
- Replies
- 8
- Views
- 1,669
Pardon me, this won't do it. Wrong interpretation of the docs.
Hmm, no idea at the moment. Perhaps you write your own writer or play with the other config options from the JsonWriter. -
8 Aug 2011 12:46 AM
- Replies
- 8
- Views
- 1,669
Read the docs from Ext.data.Writer.Json
nameProperty : StringThis property is used to read the key for each value that will be sent to the server.
this could do the trick -
7 Aug 2011 2:01 PM
- Replies
- 12
- Views
- 2,505
I had a look into the source to check if a parameter is a way to solve the problem and I think I found a much more easier solution for all.
Because the registered filters of the store are stored in... -
7 Aug 2011 6:21 AM
Jump to post Thread: Ext.view.View itemadd event bug by Nickname
- Replies
- 5
- Views
- 1,352
Please provide a testcase that shows the problem and use the Bug Report Template, see "How to report a bug"
I tried reproduced it with a dataview example and on store.add the itemadd listener on... -
7 Aug 2011 6:05 AM
- Replies
- 8
- Views
- 1,669
Can you provide some code?
I tried to reproduce this, but my RowEditor keep using POST only with the DC param in the URL.
Here is the store definition I use
... -
7 Aug 2011 5:47 AM
- Replies
- 12
- Views
- 2,505
But if you say: Okay, there is a filter for column "x" and now I add a second filter for the same column, okay lets replace it, how to manage AND linked filters?
A list of users and I want to... -
7 Aug 2011 5:37 AM
- Replies
- 9
- Views
- 2,589
Okay, thats true. I didn't read the Docs for this method. I'm using more the source to check out what something does ;)
Yes that's obviously true, I use this in my code.
What I meant, was the... -
5 Aug 2011 7:13 AM
- Replies
- 7
- Views
- 9,682
Hello,
I'm releasing my first piece of code: An ExtJs4 MVC Desktop with Zend Framework Backend and AdminPanel
The development took several months and I'm somehow happy that Sencha didn't... -
4 Aug 2011 11:59 PM
- Replies
- 9
- Views
- 2,589
Please if you quote, please quote correctly ;)
In this testcase it is correct that getNewRecords() does not return the new record, because the new record is not valid.
Yes, valid records,... -
3 Aug 2011 11:04 AM
- Replies
- 4
- Views
- 1,700
Hello Olivier,
I cannot load the grid. The JSON data contains an error from the php side
Fatal error: Using $this when not in object context in... -
3 Aug 2011 11:01 AM
- Replies
- 2
- Views
- 772
Checked the source of Ext.panel.Panel at it seems, that the header CSS class is not configurable. But you can try to set it manually after render with something like
panel.header.cls = 'mycss';
... -
3 Aug 2011 10:38 AM
- Replies
- 4
- Views
- 2,107
I tried with a simple example to duplicate the problem, but in my tests, I had some other problems.
Ext.create('Ext.form.Panel', {
title: 'Contact Info',
width: 300,
... -
3 Aug 2011 10:15 AM
Jump to post Thread: Reuse view by Nickname
- Replies
- 1
- Views
- 319
Do you have an "id" configured? A twice used Id could be a problem, but I'm not sure.
Perhaps you can post a very small testcase? -
3 Aug 2011 10:12 AM
Jump to post Thread: Organising Code by Nickname
- Replies
- 1
- Views
- 330
Did you looked at the MVC pattern in extjs4?
Separate view, model, stores and the controller make everything work again is nice to see.
I think it comes with a good structure for normal... -
3 Aug 2011 9:59 AM
Jump to post Thread: Ubuntu 10.4 64-bit Errors by Nickname
- Replies
- 10
- Views
- 3,520
Hello szabel,
shortly I will have time to test this, but I doubt that this will work.
I could not even execute the JSDB file (standalone), of course Sencha SDK failed too. But I will give it a...
Results 1 to 25 of 120
