Navigation

    Qt Forum

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Search
    1. Home
    2. Tags
    3. filedialog
    Log in to post

    • UNSOLVED FileDialog causes long startup hang
      QML and Qt Quick • qml filedialog hang • • pderocco  

      1
      0
      Votes
      1
      Posts
      92
      Views

      No one has replied

    • SOLVED How to make FileDialog and select file to load in webview ?
      QML and Qt Quick • qml webview file filedialog • • Qjay  

      5
      0
      Votes
      5
      Posts
      1175
      Views

      I just solved it myself (feels great ) . i used a property url to get url of file then assigned it to url of webview
    • SOLVED Get Image from Iphone library
      Mobile and Embedded • ios filedialog iphone imagem • • renatobibiano  

      2
      0
      Votes
      2
      Posts
      859
      Views

      found the answer in: https://forum.qt.io/topic/47495/upload-ios-image-with-qt/8
    • SOLVED QML FileDialog issue
      QML and Qt Quick • qml qt5 filedialog • • guidupas  

      2
      0
      Votes
      2
      Posts
      1432
      Views

      Solved Answering my own question: FileDialog visible property cannot be true while the component is not complete. So the code must be like below: import QtQuick 2.4 import QtQuick.Window 2.2 import QtQuick.Controls 1.3 import QtQuick.Dialogs 1.2 Window { visible: true width: 360 height: 640 maximumHeight: 640 minimumHeight: 640 maximumWidth: 360 minimumWidth: 360 title: "Acessar Galeria Test" Rectangle { id: principal anchors.fill: parent FileDialog { id: fileDialog title: "Please choose a file" folder: shortcuts.home visible: false } } Component.onCompleted: { fileDialog.visible = true; } }
    • UNSOLVED Model-View-Delegate Problem
      General and Desktop • qml qtquick filedialog folderlistmodel fileurl • • Anas A. Ismail  

      2
      0
      Votes
      2
      Posts
      724
      Views

      Hi, Please don't post the same question in multiple sub-forum, one is enough. Duplicates Closing this one
    • UNSOLVED Model-View-Delegate Problem
      QML and Qt Quick • qml qtquick mvc filedialog folderlistmodel • • Anas A. Ismail  

      1
      0
      Votes
      1
      Posts
      557
      Views

      No one has replied

    • FileDialog locks drive
      QML and Qt Quick • qml filedialog • • krobinson  

      1
      0
      Votes
      1
      Posts
      466
      Views

      No one has replied

    • set QFileDialog font
      Mobile and Embedded • font filedialog • • GregWilsonLindberg  

      2
      0
      Votes
      2
      Posts
      759
      Views

      Hi, AFAIK, you can't when calling the static methods, it's also a native file dialog so it should follow your OS settings
    • QML FileDialog memory leak
      QML and Qt Quick • qml memory leak filedialog • • blex  

      3
      1
      Votes
      3
      Posts
      1289
      Views

      Hi! Looks like this isn't in the bug tracker yet. Please report it to bugreports.qt.io.
    • [resolved]Open file dialog in webView
      QML and Qt Quick • webview filedialog open • • modjo756  

      12
      0
      Votes
      12
      Posts
      4609
      Views

      Problem resolved, link to the solution
    • Is where some non-hacky way to implement file save as feature in qml?
      Mobile and Embedded • qml qtquick qt quick qt 5.4.1 filedialog • • flashmozzg  

      1
      0
      Votes
      1
      Posts
      542
      Views

      No one has replied

    • FileDialog on Android
      Mobile and Embedded • android filedialog • • gardiol  

      5
      0
      Votes
      5
      Posts
      4067
      Views

      Question 2: http://stackoverflow.com/questions/15079406/qt-necessitas-reasonable-qfiledialog-replacement-skin
    • FileDialog bug? Extremely slow when debugging is active
      QML and Qt Quick • slow filedialog • • themts  

      3
      0
      Votes
      3
      Posts
      1266
      Views

      @Bremenpl It could be a bug. Please report it Qt BugTracker.
    • QFileDialog::getOpenFileName - dialog not closing on file select under OS X
      General and Desktop • os x dialog filedialog • • rwillard  

      9
      0
      Votes
      9
      Posts
      3285
      Views

      Can you try to comment the line OpenFile(filename); and use a qDebug there instead, this function could be the problem Thanks