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
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,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;
}