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: 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: 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: 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: 27 Mar 2023 06:35 by ADMIN
Release R1 2023 SP1

Use the Demo application >> File Dialogs >> First Look example.  I have tested typing "\\DYORDANOLAP" and hitting Enter and it seems to navigate to the folder only after pressing Enter a second time:

Expected: In the Windows File Explorer, the user is navigated to the respective folder after the first time the user hits Enter.

Unplanned
Last Updated: 12 Apr 2023 12:40 by ADMIN
In this case, by default hidden files/folders are not visible. When we hide a file/folder while the explorer control is visible, the hidden file/folder will still be present in the UI, thus allowing the user to navigate to it. 
Unplanned
Last Updated: 27 Apr 2023 07:24 by ADMIN

Currently, the dialogs provide a way to restore the last open directory. The opened directory path will be stored in a private string field of the RadOpenFolderDialog instance. However, in other this to work, the dialogs require the following steps:

  • The same dialog instance should be used every time you open the dialog.
  • In order for the directory to be saved the directory should be opened. Clicking cancel or the X button won't save the directory.
  • Closing the application and then opening it again, or generally when you create a new dialog instance, the last saved directory will get lost.

We could expose a mechanism to cache the last open directory outside of the dialogs, thus allowing you to restore the directory even when the application is closed.

 

1 2