Search Type: Posts; User: bclinton

Page 1 of 5 1 2 3 4

Search: Search took 0.09 seconds.

  1. I haven't moved to 4.1.3 yet, but I'm glad to see that you are staying active on this. Thanks!
  2. Try a store.sort() instead of the store.load() and see if that does the trick. (though if it's a remotely sorted store I guess this really won't be an improvement)
  3. This sounds like an interesting challenge. What have you tried so far?

    I'm wondering that if in the long run it may be easier to accomplish this with an XTemplate or a Dataview rather than...
  4. Replies
    2
    Views
    435
    I personally prefer to generate downloadable files, whether they be text, XML, PDF or anything else, on the server side.

    But search on "Extjs export grid" and you will find several links to...
  5. You didn't post any code which makes it kind of difficult to guess at what the problem could be, but is it possible you just need to do a grid.getView().refresh(); ?
  6. No it doesn't. But there is an example in the 4.1 docs for Ext.form.field.ComboBox:



    tpl: Ext.create('Ext.XTemplate',
    '<tpl for=".">',
    '<div...
  7. Replies
    8
    Views
    1,091
    If it's not too late to reply to this, this is most likely a path/filename issue. It is looking for the file all-classes.js to compress it. It is not finding it so that is why you are being left...
  8. This is working great for me so far, but I did encounter one issue. When the controller class from my sub-application is loaded, it looks for the stores and models in my main application's app path...
  9. Although the original post is old, I came across this issue today. Try defining your listeners in the listeners config option of your viewport definition.

    like this:



    this.viewport...
  10. Somewhere between the script tag that includes the ext js library and your application definition. I like to put all my overrides in a overrides.js file and include it in script tag right after the...
  11. Replies
    25
    Views
    12,455
    Combining the PHP and JS would make your client application less flexible since you would be tying the client to the server code. When you keep them separate, your Ext JS client is not dependent on...
  12. The Live Preview from the API docs would be an awesome way to demo Sencha Touch Apps. Are there any instructions for implementing this outside of the API docs? Has anyone been able to use it to...
  13. I haven't gotten that far yet. I'll find out if it's an easy configuration fix when I do.



    Also, your enormous signature makes me want to rant like an unprofessional child and send you private...
  14. I love the ExtJS 4 MVC application architecture, but I'd like to suggest one minor change in the recommended directory structure. I prefer having my app.js in the app/ directory rather than one...
  15. Replies
    2
    Views
    860
    I originally posted here because I wasn't sure if it was a bug or if it is the intended behavior.

    Just in case, I posted a bug report and a test case here:...
  16. Ext version tested:

    Ext 4.0.7 and 4.1-PR1, 4.1.0-beta-1
    Description:

    The isDirty() function in Ext.form.field.Field has been changed in the 4.1 preview release and now reports that fields...
  17. Replies
    2
    Views
    860
    I see that the isDirty() function in Ext.form.field.Field has been changed in the 4.1 preview release.

    This is the function in 4.07:

    isDirty : function() {
    var me = this;
    ...
  18. Replies
    8
    Views
    5,695
    Interesting... I guess because you're not including any controllers, stores, models or views it's not creating the namespace? Also, I think if you were requiring GestorSeguridad.store.XRestProxy...
  19. Replies
    8
    Views
    5,695
    If "MyApp" (the name of your application) is not defined then you seem to be operating in a different namespace than your application.

    Aren't you naming your classes something like...
  20. Perhaps it isn't working as designed which would indicate the need for a bug report.

    But since this is Q&A, have you tried using a spacer like this?



    xtype : 'titlebar',
    ...
  21. nevermind. I misunderstood the question.
  22. Replies
    4
    Views
    1,177
    Thanks for the code.

    I had one problem with it using 2.0 PR2. In the onItemTapHold handler, me.getViewItems() was returning a Javascript NodeList which doesn't have an indexOf method like a...
  23. bweiler's solution works for me in Google Chrome, but does not work for me on my Android.
  24. Replies
    6
    Views
    1,622
    xcount only works within the loop. Try this:



    '<tpl if="values.length <= 0">',
    'no comments are posted',
    '</tpl>',


    Note: This works in ExtJS and...
  25. Oh yeah. I haven't used Touch in a while (this is an old thread) and I was thinking that restriction didn't apply, but I guess that is only with apps compiled with phonegap.

    You could always...
Results 1 to 25 of 119
Page 1 of 5 1 2 3 4