FileDialog QML Type
General and Desktop
6
Posts
2
Posters
2.0k
Views
2
Watching
-
Hi and welcome to devnet,
Can you show how your are using FileDialog ?
-
CacheWin{
id: cacheWindow
visible: false
color: "white"
anchors.right: parent.right
anchors.left: parent.left
anchors.top: parent.top
anchors.bottom: parent.bottomfunction open() { visible = true } function close() { visible = false } FileDialog { id: fileDialog title: "Choose a file" nameFilters: ["btstCache files (*.che)"] visible: false //sidebarVisible: false onAccepted: { console.log("You chose: " + fileDialog.fileUrls) } onRejected: { console.log("Canceled") } } }
-
On which OS are you running your application ?
-
In that case I wonder if it's a feature available on these platforms, because on desktop it's all good.