1. stardomains's Avatar
    Is there a way to go about getting WebView to support downloads?
    07-27-14 12:47 PM
  2. jaydee5799's Avatar
    Hi. Is WebView an app? I can't seem to find a satisfactory description of it from Google.
    07-27-14 01:33 PM
  3. stardomains's Avatar
    Hi. Is WebView an app? I can't seem to find a satisfactory description of it from Google.
    WebView - BlackBerry Native
    pkcable likes this.
    07-27-14 04:25 PM
  4. Brian Scheirer's Avatar
    Looks like image downloads are being supported starting in 10.3. I assume you are wanting something other than images.

    Posted via CB10
    pkcable likes this.
    08-04-14 02:30 PM
  5. paulwallace1234's Avatar
    Well you would need to grab the url and pass it on to another class, preferable to use QNetworkAccessManager to get the actual content then QFile to save it :

    Code:
    pNetworkReply = 0;
        manager = 0;
    QUrl url(source);
        QNetworkRequest request(url);
    
        manager = new QNetworkAccessManager(this);
        pNetworkReply = manager->get(request);
    Your issue would really be catching that url, I'm not familiar with BB10 WebView but if it's anything like the old QtWebKit there should be some sort of signal/slot like onUnsupportedContent or downloadRequested which you could nab the url from QNetworkReply.

    This would of course depend on you using the BB c++ and not QML cascades WebView.
    09-14-14 07:42 AM

Similar Threads

  1. Android apps fail due to permission errors
    By mdjZm in forum More for your BlackBerry 10 Phone!
    Replies: 6
    Last Post: 07-31-14, 11:56 AM
  2. to replace blackberry handset unde warrenty
    By CrackBerry Question in forum Ask a Question
    Replies: 1
    Last Post: 07-28-14, 01:03 PM
  3. Link my Facebook contacts to my q5
    By CrackBerry Question in forum Ask a Question
    Replies: 2
    Last Post: 07-28-14, 10:08 AM
  4. Where can you set audio to hear audio without earphones
    By stev5a in forum BlackBerry PlayBook
    Replies: 3
    Last Post: 07-27-14, 02:10 PM
  5. The best music you downloaded on BlackBerry World?
    By Grafic111 in forum General BlackBerry News, Discussion & Rumors
    Replies: 1
    Last Post: 07-27-14, 10:24 AM
LINK TO POST COPIED TO CLIPBOARD