You found a bug! We've classified it as ION-1053 . We encourage you to continue the discussion and to find an acceptable workaround while we work on a permanent fix.
  1. #1
    Sencha Premium Member
    Join Date
    Apr 2010
    Posts
    142
    Vote Rating
    10
    Answers
    2
    elgs will become famous soon enough

      0  

    Default Unanswered: [BUG] Crash on download

    Unanswered: [BUG] Crash on download


    When I tried to download a file with with the packaged program, it crashed. The download link is inside an iframe window.

  2. #2
    Sencha Premium Member
    Join Date
    Apr 2010
    Posts
    142
    Vote Rating
    10
    Answers
    2
    elgs will become famous soon enough

      0  

    Default


    Has anyone from Sencha had a chance to look at this problem? Thanks!

  3. #3
    Sencha - Desktop Packager Dev Team jarrednicholls's Avatar
    Join Date
    Mar 2007
    Location
    Baltimore, MD.
    Posts
    1,745
    Vote Rating
    6
    Answers
    20
    jarrednicholls will become famous soon enough jarrednicholls will become famous soon enough

      0  

    Default


    Thanks for the report! I have opened a bug in our bug tracker.

  4. #4
    Sencha Premium Member
    Join Date
    Apr 2010
    Posts
    142
    Vote Rating
    10
    Answers
    2
    elgs will become famous soon enough

      0  

    Default


    Thanks for opening the bug, @jarrednicholls!

  5. #5
    Sencha Premium Member
    Join Date
    Jan 2013
    Posts
    5
    Vote Rating
    0
    megaurav2002 is on a distinguished road

      0  

    Default


    Thanks. Having the same issue. Any expected ETA?

  6. #6
    Ext JS Premium Member
    Join Date
    May 2011
    Posts
    36
    Vote Rating
    1
    h.latzko is on a distinguished road

      0  

    Default


    Having the same effect, need a fix asap. If you need more technical information about the reproduction process, please ask.

  7. #7
    Sencha Premium Member
    Join Date
    Apr 2010
    Posts
    142
    Vote Rating
    10
    Answers
    2
    elgs will become famous soon enough

      0  

    Default


    Hi @jarrednicholls, any chance to get an update for this issue? Thanks.

  8. #8
    Ext JS Premium Member
    Join Date
    May 2011
    Posts
    36
    Vote Rating
    1
    h.latzko is on a distinguished road

      0  

    Default


    Hi,

    I was able to help me with a modified solution nearly same as documented here: http://www.sencha.com/forum/showthre...fined-location. I hope this helps you with your download topic.
    (for me, the topic can be marked as "workaround possible").

    Harald

  9. #9
    Sencha Premium Member
    Join Date
    Apr 2010
    Posts
    142
    Vote Rating
    10
    Answers
    2
    elgs will become famous soon enough

      0  

    Default


    Thanks @h.latzko, the thread you recommended is very interesting. That really inspired me to learn more about javascript.

  10. #10
    Ext JS Premium Member
    Join Date
    May 2011
    Posts
    36
    Vote Rating
    1
    h.latzko is on a distinguished road

      1  

    Default


    @elgs: I added in every occurance of a file download (often done via a button, sometimes initiated by visiting a "<a href.." HTML entity) a javascript statement in order to distinguish between "native" browser support and Sencha desktop packager code:
    Code:
    if(typeof Ion == 'undefined') {
      <ExtJS code for browser file download>
    } else {
     <Javascript code for Ion file handling>
    }
    Perhaps this helps you.
    (Another point is that images, which are links, are treated another way than text, which is contained in a "<a href" HTML code). You may experience that too.

    Regards,
    Harald