Search Type: Posts; User: dj
Search: Search took 0.05 seconds.
-
22 Sep 2011 10:27 AM
Jump to post Thread: removing dead code by dj
- Replies
- 6
- Views
- 2,085
Hi SunboX,
read post #2, Google's Closure Compiler (in advance mode, when it removes dead code) is not compatible with ExtJS's class system. -
16 Sep 2011 10:27 AM
- Replies
- 9
- Views
- 3,164
Yes, this fix looks better / is more elegant
-
15 Sep 2011 2:05 PM
Jump to post Thread: how to add alt message to tree panel by dj
- Replies
- 3
- Views
- 719
it's the qtip config option you are searching:
http://docs.sencha.com/ext-js/4-0/#!/api/Ext.data.NodeInterface-cfg-qtip
... and don't forget to call
Ext.tip.QuickTipManager.init();
once... -
7 Sep 2011 12:32 PM
Jump to post Thread: issue with generated html by dj
- Replies
- 3
- Views
- 461
add a class to the itemTpl of the emailList:
var emailList = new Ext.List({
store: emailStore,
... -
6 Sep 2011 2:13 PM
- Replies
- 0
- Views
- 546
As you can see on the attached screenshot, the list of forums is missing on the Quick-Selection-Menu at the bottom of a Forum Page.
27903 -
6 Sep 2011 2:01 PM
Jump to post Thread: issue with generated html by dj
- Replies
- 3
- Views
- 461
try
var emailPopup = new Ext.Panel({
id: 'emailPopup',
modal: true,
... -
6 Sep 2011 1:31 PM
Jump to post Thread: SDK Tooks - Zip Version for Windows? by dj
- Replies
- 2
- Views
- 2,098
Sadly there is none – I would very much like a ZIP-version for Mac OS X, also. I'm console-savy enough to change the PATH variable on my own (and how the installer does it doesn't work for me anyway...
-
6 Sep 2011 1:27 PM
- Replies
- 4
- Views
- 2,749
see http://www.sencha.com/forum/showthread.php?145803-help-me-slicer&p=644470&viewfull=1#post644470
... it is probably poorly communicated but it's not the job of the slicer to generate all those... -
6 Sep 2011 4:58 AM
- Replies
- 4
- Views
- 2,216
Ext.data.proxy.Ajax is the direct counterpart for Ext1.1's Ext.data.HTTPProxy.
But the whole Data Package was refactored and improved a lot – you will not find direct counterparts for the old... -
4 Sep 2011 9:00 AM
Jump to post Thread: removing dead code by dj
- Replies
- 6
- Views
- 2,085
Wow, 50% – I wouldn't have thought that.
A tool for automatic removal of dead code of type #2 would definitely be cool. But it is kinda hard to do and cannot be universal (like the compression of... -
3 Sep 2011 4:53 AM
Jump to post Thread: removing dead code by dj
- Replies
- 6
- Views
- 2,085
What exactly do you mean by dead code removal?
There are two different concepts sailing under this banner:
(1)
Ext.define('Test', {
test: function(){
var t = 'hello'; -
3 Sep 2011 4:27 AM
Jump to post Thread: Sencha Deploy by dj
- Replies
- 7
- Views
- 2,378
It does do that. Border.js is loaded by your configuration (layout:'border'). The superclass or a mixin cannot know, which layout you want to use. So you have to uses or requires the Border layout...
-
3 Sep 2011 4:19 AM
Jump to post Thread: help me, slicer by dj
- Replies
- 1
- Views
- 1,143
I'm afraid I don't quite understand what you're after. Could you elaborate?
The slicer tool only generates the images that are necessary to simulate CSS3 features in older browsers (*-bg.gif,... -
29 Aug 2011 4:13 AM
- Replies
- 3
- Views
- 492
Try this workaround
-
29 Aug 2011 4:10 AM
- Replies
- 9
- Views
- 3,164
Looks like I hit the same bug - the following workaround seems to work:
Add this to you overrides file:
Ext.require('Ext.grid.Panel', function(){
Ext.grid.Panel.override({
... -
10 Aug 2011 6:03 AM
Jump to post Thread: Charts in extJS (4) by dj
- Replies
- 14
- Views
- 5,582
It's available for support subscribers at support.sencha.com
-
8 Aug 2011 6:03 AM
Jump to post Thread: Charts in extJS (4) by dj
- Replies
- 14
- Views
- 5,582
Are you sure that you are using the newest versions of Compass and Sass? ExtJS uses cutting edge features of both.
I use Sass 3.1.7, Compass 0.11.5 and ExtJS 4.0.5. I just compiled... -
7 Aug 2011 8:44 AM
Jump to post Thread: Charts in extJS (4) by dj
- Replies
- 14
- Views
- 5,582
Since ExtJS uses SASS for the generation of it's CSS, it should be possible, to tailor the CSS. It is not officially supported, thou.
Copy resources/sass/ext-all.scss to... -
27 Jun 2011 1:35 AM
- Replies
- 1
- Views
- 733
AFAIK, in ExtJS 3 the tooltip that you attach to an element with a "qtip" attribute ONLY gets shown on that element. It does not get shown in child elements (like <u> or <em>)
To get the tooltip... -
26 Jun 2011 11:58 PM
Jump to post Thread: Ext.ux.EncryptionLoginForm by dj
- Replies
- 13
- Views
- 7,608
You should use
echo -n 123 | sha256sum
echo adds a newline, so you did not generate the SHA256 sum of "123" but of "123\n".
Yes, it is a relative moderate security improvement to only... -
14 May 2011 3:16 AM
Jump to post Thread: Ext Core Ext.select getHeight by dj
- Replies
- 1
- Views
- 2,034
How about
Ext.select('#'+Ext.dd.ddEL+' div.x-window-body').first().getHeight();
see: http://dev.sencha.com/deploy/ext-4.0.0/docs/api/Ext.CompositeElementLite.html (#first method)
and... -
14 May 2011 2:25 AM
Jump to post Thread: Generating PDF by dj
- Replies
- 15
- Views
- 9,887
Also have a look at http://code.google.com/p/wkhtmltopdf/ or http://code.google.com/p/phantomjs/ – they both use a WebKit-based headless browser and can both generate a PDF file from a HTML file....
-
29 Apr 2011 9:32 AM
- Replies
- 21
- Views
- 8,105
That doesn't work on my machine (Mac OS X 10.6 + zsh). I added this to my ~/.zshrc to make it work:
export... -
26 Apr 2011 9:56 AM
Jump to post Thread: Ext.ux.EncryptionLoginForm by dj
- Replies
- 13
- Views
- 7,608
Hi resTive,
BE = Backend -> you server-side code
Salted passwords are used to combat rainbow tables: http://en.wikipedia.org/wiki/Rainbow_table - so you do have a benefit of using a random salt... -
13 Apr 2011 1:08 PM
Jump to post Thread: Global event/messaging by dj
- Replies
- 5
- Views
- 1,406
You could also use the new Ext.Application - it has Ext.util.Obserable mixed in so you can fire events on that singleton.
Results 1 to 25 of 115
