Search Type: Posts; User: burnnat

Page 1 of 5 1 2 3 4

Search: Search took 0.02 seconds.

  1. 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
  2. Thanks, Don - your suggested workaround works just fine for me. :)
  3. 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...
  4. 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...
  5. 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...
  6. Awesome, this will be very useful!
  7. Sounds good. Thanks, Mitchell! :)
  8. 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...
  9. 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...
  10. 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...
  11. 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,
    ...
  12. I believe it was fixed in 4.1.2 as well.
  13. 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',...
  14. 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.
  15. 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...
  16. 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>',
    ...
  17. 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...
  18. 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. 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...
  20. 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...
  21. 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.
  22. Bump... any update on this one? Has it been assigned a ticket number?
  23. 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...
  24. 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
    ...
  25. 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
Page 1 of 5 1 2 3 4