Search Type: Posts; User: juger

Search: Search took 0.01 seconds.

  1. Replies
    2
    Views
    183
    Well I figured out that problem. It was the 'Ext.proxyType' reference. I'm having a different problem now though.

    I have a workspace project that includes an ExtJS app, Touch app, and a set of...
  2. Replies
    2
    Views
    183
    I've never had success with Cmd upgrading my application ExtJS version, but the new version of Cmd seems to give much better error messages than previous versions. I'm trying to run


    sencha app...
  3. That's not what I meant, but I scrapped using ExtJS's draw components because it wasn't working in IE and moved to the Canvas in HTML5. I mean 'mask' as in the masks used in graphics editing, where...
  4. I have a draw component based on an SVG I created, and I want to be able to use a mask on it. Is that possible?
  5. Replies
    3
    Views
    244
    I'm trying to create a component that will allow me me to display html5 video like the ExtJS flash component, where I can set source (or multiple sources to support multiple browsers), size and then...
  6. Replies
    3
    Views
    244
    I'm looking for an advanced tutorial or something to help me get started on creating an entirely custom UI component with templates and everything. All I've been able to find are examples and...
  7. I created a brand new project and was able to reproduce the error. The files can be downloaded from here:

    http://services.simmersion.net/files/GridTest.zip
  8. REQUIRED INFORMATIONExt version tested:

    Ext 4.1.1.1
    Browser versions tested against:

    Chrome/IE9
    Description:

    Hiding columns at run-time in the grid panel results in incorrect row height...
  9. It's like some kind of animation queue. For each panel added, it plays an animation in sequence without stepping on the animation of another item. I need to know when the last one is finished...
  10. thanks slemmon, but that doesn't do what I need. In my application, the accordion container's contents changes dynamically and each time an item is added, it is given its own animation (by default)...
  11. How would I go about listening for the end of the default animation when an item is added to an accordion panel is completed? See the code below:


    Ext.define('App.view.AccordionView', { ...
  12. I understand how my specific example breaks MVC by accessing a controller within a view, but does doing any kind of processing in the view break MVC also? Like if instead of calling a controller in...
  13. Replies
    1
    Views
    158
    The open/close animation in the accordion layout is nice and smooth in chrome, but can be choppy or skipped completely on IE9. The accordions I'm using contain grids with several rows. Is there any...
  14. You can also put the handler for a button right in the view itself and call the controller from there


    Ext.define('Test.view.TestView', { extend: 'Ext.Panel',
    height: 300,
    width:...
  15. Replies
    4
    Views
    130
    The suspendEvents/resumeEvents looks like it could help. I ran a profiler and it was spending a lot of time on a specific queryBy I was doing. I'll rewrite that portion and use suspend/resume...
  16. Replies
    4
    Views
    130
    IE 9. The application is quick and responsive on chrome, but on IE, the loading indicators get stuck and a warning comes up about long running scripts. It eventually works fine, but it takes a...
  17. Replies
    4
    Views
    130
    On the 4.1 blog addressing performance, it recommends using for instead of Ext.Array.each. I'm working with a lot of code that uses Array.each and I'm trying to figure out if changing all of them to...
  18. Sure, sorry I forgot to follow the guidelines for reporting a bug



    Ext version tested:

    Ext 4.1
    Browser versions tested against:

    Chrome
  19. The key code defined for ENTER and RETURN in the Ext.EventObject class is 13, but when you press those keys, the event actually returns 12.
  20. Instead of using a proxy, why don't you do the AJAX request by hand and then load the contents into the store manually. You can use something like this:


    Ext.Ajax.request({ url:...
  21. Replies
    12
    Views
    4,632
    I've been working on a similar problem, and I found an article that shows how to combine ExtJS and Touch. It doesn't specifically address your issue with the touch gesture, but it goes a long way...
  22. wow, thanks. you probably just saved me 2-3 days
  23. I still can't figure out how you are supposed to publish using eclipse and the plugin. Autocompletion is great, but how are you supposed to use it to deploy and test what you are doing? I've...
  24. Well, I know how to do that. I'm basically asking how the project should be set up in eclipse. I use eclipse all the time, but for languages that require compiling. Since my project is located in...
  25. I'm trying to migrate from my aptana project to eclipse using the sencha plugin and I'm having trouble figuring out how to set up the project so that I can utilize the plugin without putting...
Results 1 to 25 of 25