Search Type: Posts; User: krukow
Search: Search took 0.04 seconds.
-
1 Oct 2009 9:30 AM
- Replies
- 1
- Views
- 734
I was wondering if there is a general rule for what component properties can be shared in components' prototypes and which must be specified in a config object "per instance".
I am interested in... -
5 Jan 2009 4:09 AM
- Replies
- 1
- Views
- 1,075
When migrating from Ext.2.0.2 I have found a new bug either in KeyNav or something it depends on.
If an enabled KeyNav object is disabled and then later re-enabled, then all key-listeners are... -
1 Jul 2008 8:37 PM
Jump to post Thread: Character set encoding by krukow
- Replies
- 3
- Views
- 1,359
Did you check your response headers? You can use Firebug or Live HTTP Headers for firefox. Your request has:
Accept-Charset ISO-8859-1,utf-8;q=0.7,*;q=0.7
which says that it prefers... -
11 Apr 2008 1:10 AM
Jump to post Thread: Advantages of Ext JS by krukow
- Replies
- 6
- Views
- 2,493
Hello and welcome.
There are many advantages to Ext. In fact, an answer to this would be so comprehensive that nobody is likely to answer this posting. I think you should be more specific in your... -
8 Apr 2008 8:50 AM
- Replies
- 2
- Views
- 912
Yes, the Class function would be invoked with a newly created object as 'this'. This newly created object has Class.prototype as its [[prototype]].
No 'this' can't be used in the sense you mean:... -
17 Mar 2008 7:51 AM
- Replies
- 2
- Views
- 976
Thanks, mate.
-
14 Mar 2008 9:49 AM
- Replies
- 2
- Views
- 976
Hello everyone,
I am currently writing a series of blog postings, where I express some ideas concerning JavaScript clients in web applications. I am posting here for several reason:
There are a... -
3 Mar 2008 12:35 AM
Jump to post Thread: Sub : Ext.namespace by krukow
- Replies
- 4
- Views
- 1,681
I've recently blogged about namespaces: what why and how to use them.
http://higher-order.blogspot.com/2008/02/designing-clientserver-web-applications.html
Check it out if you are interested. -
15 Feb 2008 10:54 AM
- Replies
- 8
- Views
- 4,294
Thanks but that is not what I really want. The onbeforeunload event will trigger in any of the following scenarios: user refreshes page, user types in another URL in the location field, users clicks...
-
15 Feb 2008 12:51 AM
- Replies
- 8
- Views
- 4,294
I kind of feel bad about making this post, but I figure if anyone knows how to do this, someone using Ext will know. So here goes.
I've tried to discover a way that reliably detects when the User... -
14 Feb 2008 1:01 PM
Jump to post Thread: How do I do this in OO Javascript? by krukow
- Replies
- 10
- Views
- 1,615
The code from the example is:
module = function(){
var count = 0; // Private Variable for the module. Not accessible from outside
var increaseCount = function(){ // Private function.... -
14 Feb 2008 3:30 AM
Jump to post Thread: typeof x == 'undefined' by krukow
- Replies
- 0
- Views
- 545
Hello,
I've been wondering about the expression typeof x == 'undefined' which occurs many places in the Ext sources. For example, in Record.set
/**
* Set the named field to the... -
25 Jan 2008 12:21 PM
- Replies
- 13
- Views
- 9,109
Can you post the relevant code snipplets? That would make it much easier to help you.
-- Karl -
25 Jan 2008 12:15 AM
Jump to post Thread: ScriptTagProxy & Caching by krukow
- Replies
- 1
- Views
- 810
(noticed another post about this, but is seems no solution yet)
I decided to try and create an extension of ScriptTagProxy which attempts to exploit the browser cache. Any chance any of you... -
23 Jan 2008 5:22 AM
Jump to post Thread: ScriptTagProxy & Caching by krukow
- Replies
- 1
- Views
- 810
Hello,
I was thinking about how to do caching of JSON responses when using ScriptTagProxy to do cross domain requests.
Once can set the ScriptTagProxy config option nocache: false in order to... -
14 Jan 2008 9:57 AM
- Replies
- 2
- Views
- 730
Interesting. I think the documentation is lacking on that point.
Thanks for the help!
Cheers,
- Karl -
13 Jan 2008 1:08 PM
- Replies
- 2
- Views
- 730
Hello,
I was testing my application in IE6 when I noticed a difference in the IE6 rendering (compared to IE7 and FF). It occurs when using a cardlayout with at least 2 active items. The first item... -
1 Jan 2008 10:17 PM
Jump to post Thread: store object filtering by krukow
- Replies
- 4
- Views
- 1,190
Yeah, the API docs are not very clear on this.
Internally the store keeps a reference to the data put in the store, but also a reference to a single "filtered" version of the data which is a... -
28 Dec 2007 1:01 AM
- Replies
- 4
- Views
- 1,600
I've been wondering about this too, but so far I've been to lazy to actually go look it up :) So thanks for asking!
First, regarding contentEl and el: I think contentEl is specific to panel and it... -
13 Dec 2007 11:02 PM
Jump to post Thread: Ext Translations by krukow
- Replies
- 384
- Views
- 125,068
http://extjs.com/forum/showthread.php?p=97799#post97799
ext-lang-da.zip attached. -
11 Dec 2007 12:05 PM
Jump to post Thread: Ext 2.0 Application: Filespots.com by krukow
- Replies
- 493
- Views
- 132,774
can you add kkr@trifork.com <- I may want to use this to demo capabilities of Ext
-
11 Dec 2007 11:44 AM
Jump to post Thread: Ext Translations by krukow
- Replies
- 384
- Views
- 125,068
Hello,
I have a some corrections to the translations in ext-lang-da.js. Obviously it is hard for the core team to judge whether this is really a "bug" or not, but these are my suggestions.
... -
6 Dec 2007 11:51 AM
- Replies
- 2
- Views
- 2,398
I would suggest using YUICompressor or JSmin -- personally I would trust them more and you can run them offline as part of your build.
Cheers
- Karl -
5 Dec 2007 9:32 PM
Jump to post Thread: Testing by krukow
- Replies
- 27
- Views
- 13,904
Yes, I agree that in projects where you are using JS to define the view by simply using existing Ext components, unit tests are probably just a waste of time (other than the use you indicate)....
-
5 Dec 2007 12:59 PM
Jump to post Thread: Testing by krukow
- Replies
- 27
- Views
- 13,904
Nice to see someone else looking at these problems. Looking forward to hearing about your experiences.
In the mean time I've been looking at automated unit-testing using YUI, i.e., yuitest. The...
Results 1 to 25 of 61
