Completed
Last Updated: 17 Jun 2019 13:32 by ADMIN
Release R2 2019 SP1
JeffSM
Created on: 24 May 2019 19:27
Category: FileDialogs
Type: Bug Report
1
File Dialogs: Not sorting column datetime when view details

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

3 comments
ADMIN
Dess | Tech Support Engineer, Principal
Posted on: 28 May 2019 05:28
Hello, Jeff,    

You are absolutely right. The sorting behavior should be enabled by default.

I have logged it in our feedback portal by making this thread public. You can track its progress, subscribe for status changes and add your comments on the following link - feedback item.

I have also updated your Telerik points.

Currently, the possible solution that I can suggest is to enable the sorting as it was demonstrated in my previous reply.

Regards,
Dess | Tech Support Engineer, Sr.
Progress Telerik
Get quickly onboarded and successful with your Telerik and/or Kendo UI products with the Virtual Classroom free technical training, available to all active customers. Learn More.
JeffSM
Posted on: 27 May 2019 16:02
You Telerik must be joking, if you are replacing Windows Dialog you necessarelly should make this sort To true by default.
ADMIN
Dess | Tech Support Engineer, Principal
Posted on: 27 May 2019 07:32
Hello, Jeff,    

I am really glad to hear that you like the newly introduced file dialogs.

Note that the file dialogs internally uses a RadListView for displaying the folders/files. In order to enable sorting, it is necessary to set the EnableSorting and EnableColumnSort properties to true:

RadOpenFileDialog openFileDialog = new RadOpenFileDialog();
openFileDialog.OpenFileDialogForm.ExplorerControl.FileBrowserListView.EnableSorting = true;
openFileDialog.OpenFileDialogForm.ExplorerControl.FileBrowserListView.EnableColumnSort = true;
DialogResult dr = openFileDialog.ShowDialog();
if (dr == System.Windows.Forms.DialogResult.OK)
{
    string fileName = openFileDialog.FileName;
}


I hope this information helps. If you need any further assistance please don't hesitate to contact me. 

Regards,
Dess | Tech Support Engineer, Sr.
Progress Telerik
Get quickly onboarded and successful with your Telerik and/or Kendo UI products with the Virtual Classroom free technical training, available to all active customers. Learn More.
Attached Files: