Completed
Last Updated: 07 Nov 2019 14:24 by ADMIN
Release R1 2020 (LIB 2019.3.1111)

To reproduce: 

private void radButton1_Click(object sender, EventArgs e)
{
    RadOpenFileDialog fd = new RadOpenFileDialog();
    fd.ShowHiddenFiles = true;
    fd.ShowDialog();
}

Completed
Last Updated: 12 Feb 2020 12:03 by ADMIN
Release R1 2020 SP1
Created by: James
Comments: 3
Category: FileDialogs
Type: Feature Request
1
I'd like to prevent the possibility of an end-user deleting or copying files while saving a file. Is this possible in the RadOpenFileDialog?
Completed
Last Updated: 15 Aug 2019 14:26 by ADMIN
Release R3 2019 (LIB 2019.2.819)
Created by: Jeff
Comments: 1
Category: FileDialogs
Type: Bug Report
1
If I set .InitialDirectory to a network path, the Tree Navigation Pane shows multiple instances of the network path. I've collapsed several of them so you can see it more easily in the image. Am I missing a setting? Can this be prevented in the Directory Requesting sub?
Completed
Last Updated: 15 Aug 2019 14:26 by ADMIN
Release R3 2019 (LIB 2019.2.819)
Created by: Jeff
Comments: 1
Category: FileDialogs
Type: Bug Report
1

Maybe I'm doing this wrong but it works with the standard .Net SaveFileDialog. No matter how many filters I add or which FilterIndex I set, the last filter is always activated.

With DF.RadSaveFileDialog1
    .SaveFileDialogForm.StartPosition = FormStartPosition.CenterParent
    .SaveFileDialogForm.Text = "Save File As - " & DF.OriginalTitle
    .SaveFileDialogForm.ThemeName = "Fluent"
    .CustomPlaces.Clear()
    .ShowNetworkLocations = False
    .InitialDirectory = My.Application.Info.DirectoryPath()
    .Filter = "Word Document (*.docx)|*.docx|PDF Document (*.pdf)|*.pdf"
    .RestoreDirectory = True
    .FilterIndex = 1
    .ShowDialog()
End With
Completed
Last Updated: 29 Aug 2019 10:09 by ADMIN
Release R3 2019
This will ensure folder navigation for Desktop, Documents, Images, and Download
Completed
Last Updated: 31 May 2019 08:37 by ADMIN
Release R2 2019 SP1 (LIB 2019.2.603)

To reprduce: 

RadOpenFileDialog dialog = new RadOpenFileDialog();
dialog.MultiSelect = true;

dialog.ShowDialog();

- Select one file only.

Completed
Last Updated: 17 Jun 2019 13:32 by ADMIN
Release R2 2019 SP1
Created by: JeffSM
Comments: 3
Category: FileDialogs
Type: Bug Report
1

Dear,

Since 1998 I design about 1000 ActiveX, FileDialogs were one of them.

 

Your is cool.

But my end-user complain that when they select details view, the column DateTime is not clickable to sort the files.

 

Please, fix it, or show me how to do.

 

Best,

 

Jeff

1 2