Hi
We're using Folder Widget in our external app. Something like this
//csui/integration/folderbrowser2/folderbrowser2.widget
var browser = new FolderBrowserWidget(
{
connection: serverConnection,
start: {id: FolderDataID }
});
browser.show({placeholder: '#content'});
In Content Server the default click on the documents is configured to open Overview page.
This way it also works in the widget. Is it possible to override that? Instead it would Download the document or open (viewer)
By using .extend or similar method? Within the widget code
csui/utils/commands/open
Thanks