Search Type: Posts; User: burnnat
Search: Search took 0.02 seconds.
-
9 Apr 2013 7:44 AM
- Replies
- 8
- Views
- 359
If all you want to do is concatenate two files, couldn't you use the "sencha fs concat" command?
For example:
sencha fs concat -to=output.js input1.js input2.js -
25 Mar 2013 1:58 PM
Jump to post Thread: Upgrading Sencha Cmd behind proxy by burnnat
- Replies
- 4
- Views
- 284
Thanks, Don - your suggested workaround works just fine for me. :)
-
22 Mar 2013 5:58 AM
Jump to post Thread: Upgrading Sencha Cmd behind proxy by burnnat
- Replies
- 4
- Views
- 284
I read in the release announcement for Sencha Cmd 3.1 that it's now possible to use the "sencha upgrade" command to upgrade to the latest version. However, when I try running the command, I get a...
-
15 Feb 2013 10:20 AM
- Replies
- 1
- Views
- 315
REQUIRED INFORMATION
Ext version tested:
Ext 4.1.3 Ext 4.2.0rc1
Browser versions tested against:
FF 18 IE8 Chrome 24
Description:
Stores fail to fire a "metachange" event for proxies... -
6 Nov 2012 6:40 AM
- Replies
- 7
- Views
- 973
The "class" option is used to specify individual class names. If you're trying to include classes matching MyAppNamespace.*, you'll want to use the "namespace" option instead, like so:
sencha... -
30 Oct 2012 5:08 AM
- Replies
- 6
- Views
- 997
Awesome, this will be very useful!
-
29 Oct 2012 1:12 PM
- Replies
- 6
- Views
- 997
Sounds good. Thanks, Mitchell! :)
-
29 Oct 2012 12:47 PM
- Replies
- 6
- Views
- 997
I've been noticing an issue with the email notifications from threads I start in the ExtJS 4 bug reports forum. I receive the notifications fine for "normal" posts in the thread, if someone responds...
-
29 Oct 2012 12:24 PM
- Replies
- 3
- Views
- 351
Sure, it's possible to add additional CSS rules to override these hard-coded values; that's what I'm currently doing to work around this. However, it makes the resulting CSS bigger (since the default...
-
29 Oct 2012 11:10 AM
- Replies
- 3
- Views
- 351
When theming menu components, no SASS variables exist to modify the menu background gradient style or border width and radius. Instead, the values are hard-coded to use a "matte" gradient, a border...
-
26 Oct 2012 10:35 AM
Jump to post Thread: Overeager matching for -namespace by burnnat
- Replies
- 3
- Views
- 459
Thanks, Don. This seems to be working much better in 3.0.0.230, but I think the behavior is still not quite right. Consider the following situation:
Ext.define('Ux', {
singleton: true,
... -
26 Oct 2012 9:53 AM
- Replies
- 11
- Views
- 2,165
I believe it was fixed in 4.1.2 as well.
-
26 Oct 2012 6:52 AM
- Replies
- 5
- Views
- 467
Okay, a couple things:
My earlier statement was wrong, you actually need to double-escape the period in the mapping string. So, although quite ugly, it should be: { name: 'myNestedAttribute',... -
25 Oct 2012 9:49 AM
- Replies
- 23
- Views
- 2,862
The Ext.require() function is only intended for use with ExtJS-style classes. For other arbitrary javascript files, you probably want to use Ext.Loader.loadScript.
-
25 Oct 2012 9:34 AM
Jump to post Thread: Selecting files via class aliases by burnnat
- Replies
- 1
- Views
- 304
Under the sencha compile command in Sencha Cmd 3, is there any way to include a class with a particular alias? I'd love to be able to do something like sencha compile include...
-
20 Oct 2012 11:45 AM
Jump to post Thread: XTemplate xkey not working by burnnat
- Replies
- 2
- Views
- 342
This looks like a bug in ExtJS. I copied-and-pasted your template and data into a simple test:
var t = new Ext.XTemplate(
'<div>',
'<h1>Services</h1>',
'<p>',
... -
19 Oct 2012 9:49 AM
Jump to post Thread: Ext.util.Observable usage by burnnat
- Replies
- 1
- Views
- 275
I can't speak authoritatively (of course), but if I were to offer a guess, my first impression is that it could be because Ext.util.Observable provides a constructor that is automatically inherited...
-
19 Oct 2012 9:35 AM
- Replies
- 5
- Views
- 467
Try escaping the period with two backslashes, like this:
{ name: 'myNestedAttribute', mapping: 'entityrelation\\.attribute' }
Otherwise, the period will be treated like a CSS class selector. -
19 Oct 2012 8:15 AM
Jump to post Thread: Windows vs. Unix newlines by burnnat
- Replies
- 1
- Views
- 261
It seems that Sencha Cmd always uses Unix-style newlines (LF) for commands like sencha compile metadata, even when run on Windows machines. Is there any option to generate this data with Windows...
-
16 Oct 2012 9:07 AM
- Replies
- 7
- Views
- 575
As simple as it gets:
Ext.state.Manager.setProvider(new Ext.state.CookieProvider());
// save data
var original = [1, 2, 3, 'a', 'b', 'c'];
Ext.state.Manager.set('data', original);
// load... -
15 Oct 2012 12:12 PM
- Replies
- 6
- Views
- 1,898
I'm also interested to hear what the "proper" way is, if one exists. The best I could do was hack together a not-too-great solution using the Ant integration of Sencha Cmd.
-
12 Oct 2012 6:48 AM
- Replies
- 4
- Views
- 2,896
Bump... any update on this one? Has it been assigned a ticket number?
-
10 Oct 2012 6:05 AM
Jump to post Thread: Overeager matching for -namespace by burnnat
- Replies
- 3
- Views
- 459
Running a test with the classes "Test.One", "Test.Two", "Test2.One", and "Test2.Two", I expected the following command to compile only the classes in the Test.* namespace:
sencha compile... -
9 Oct 2012 12:21 PM
Jump to post Thread: Issue with exclude -all? by burnnat
- Replies
- 3
- Views
- 767
After further reading of the Sencha Cmd documentation, I now see that my original command:
sencha compile -classpath ext/src,src exclude -all and include -class Custom.Test and concat test.js
... -
9 Oct 2012 6:59 AM
Jump to post Thread: Ant clean target not working by burnnat
- Replies
- 1
- Views
- 532
I'm using Sencha Cmd 3.0.0.190 and running sencha ant clean in my application directory appears to have no effect. Looking in build-impl.xml, I see this:
<target name="-clean">
<delete...
Results 1 to 25 of 120
