Search Type: Posts; User: bareflix

Page 1 of 3 1 2 3

Search: Search took 0.02 seconds.

  1. I have an app that works with 4.0.2a, but with 4.1.1a the Sprite events are no longer delivered. Did you ever find a better solution? I seems like something is broken.
  2. I have the following code which works with extjs 4.0.2a, but when I run with 4.1.1a, none of the sprite events fire. Any suggestions for what to try?


    this.overlay =...
  3. I was using ext-debug.js. Now I do get an error message if I use ext-all-dev.js.

    In extjs 4.0.x, it was not manditory to create a class in the required file. I was using the required mechanism to...
  4. I'm using extjs 4.1.0 and have noticed a change from extjs 4.0.

    I have an application that works fine. At the start of the app.js file, I have an Ext.require with a list of files. If I add:...
  5. I'm trying to attach a progress bar to a file upload, and I need access to the form's Ext.data.Connection object so I can call getXhrInstance.
    I've looked through the source, but haven't been able...
  6. Replies
    1,023
    Views
    364,569
    Does Ivanblanc's 4.0 port work with 4.1? Or is there a 4.1 native alternative?
    This is such a great feature, I keep hoping they will make it part of the toolkit.
  7. Replies
    2
    Views
    708
    I see there is no installer for Linux for the 2.0 SDK tools.
    Is there still a link where I can download the 1.2.3 tools?
  8. I tried it, and it works! Thanks that's exactly what I was looking for. The documentation for down doesn't mention itemId's. The only references I saw to itemId made it sounds like they only worked...
  9. I looked at itemId as well, but it only works for the immediate children of the container, according to the documentation. I'd like to be able to re-arrange the form, possibly adding fieldsets or...
  10. That's what I was doing, but if I have multiple windows up, each editing a different record, that does not work. #button refers to an id, which needs to be globally unique. down finds the first...
  11. In my application I have a window which contains a tab panel which contains a form, which may contain fieldsets that hold toggle buttons. Here's an example button:


    ...
  12. surface.removeAll (true);

    the removeAll function no longer works.

    event handlers on composite sprites no longer fire.


    var comp = Ext.create('Ext.draw.CompositeSprite', {
    ...
  13. Replies
    2
    Views
    596
    I was able to get it to work by calling the undocumented:


    surface.setViewBox(0, 0, width, height);


    It seems like a bug to me that this is not done automatically when viewBox is true.
  14. Replies
    2
    Views
    596
    I create the draw component with an initial place-holder box:


    draw = Ext.create('Ext.draw.Component', {
    id: "MainDraw",
    viewBox: true,
    items: [ {
    ...
  15. Replies
    2
    Views
    596
    I have a draw component that I update ever time I poll my server. It seems to scale to the first image I draw, but if the updated image is bigger or smaller, it still scales to the size of the first...
  16. Not really. Since my backend api doesn't change often, I just get a copy from the server and store it in a local file which I reference vi Ext.require in my app.js.
    At least that way I can do a...
  17. I have a window with a tab panel that contains a form in one tab, and a transaction log in the other tab. When the window is rendered, it is sized perfectly to fit the form, which is exactly what I...
  18. I had sencha create set up and working without ext.direct using this command:


    sencha create jsb -a index_devel.html -p app.jsb3

    Then I added my direct api in the index_devel.html file as I...
  19. Do you have any pointers on how to catch these errors?
    I have ext.Direct setup and working, and I set an exception handler with:


    Ext.direct.Manager.on('exception', this.directException,...
  20. I found it. it is called zIndex (note capitol I).
    This should be added to the sprite documentation.
  21. Is there a way to set the zindex of a sprite?

    so far all I see is the order the sprite is added determines it's z index. Can it be set and/or modified later?

    --
    Chris Bare
  22. I want to display several network nodes as an Ext.img and use normal container rules to lay them out. Then I would like to be able to draw lines in the container panel connecting the images. Is that...
  23. I'm trying to follow the new MVC model with a very simple app. I have a login window, a main window and a login controller.
    I don't know if this is correct or not, but I add this to my app.js:

    ...
  24. Has anyone heard of, or attempted an Ext.Direct backend for the Google App Engine written in Google's GO language?
    I've written a backend in C and used the PHP one, so I'm sure I could get it...
  25. It's been a while, but I *think* my problem was that my backend function was declared with no parameters. I just stubbed it out, thinking I would finish it once I got the javascript side working....
Results 1 to 25 of 65
Page 1 of 3 1 2 3