Every file dislplay window should start in detail view

I see...

I don't think that's part of the settings, but you can have a script add-in handle this.

// Called after a new folder is read in a tab
function OnAfterFolderChange(afterFolderChangeData) {
    var cmd = DOpus.Create().Command();
    cmd.RunCommand('Set VIEW=details');
    // cmd.RunCommand('Set FORMAT=!user');
}

EventAfterFolderChange.js.txt (231 Bytes)

How to

How to use buttons and scripts from this forum