Display content of files in sidebar

Hi, is there a possibility to display content of files in an sidebar on the right?
Example textfiles or eml-files.

Hello!

You can use onViewInit event to customize view configuration.

 "onViewInit": function(name, config){
      if (name === "bodyLayout")
        config.cols.reverse(); 

Please check the example: https://snippet.webix.com/k09zr2bv

Bad statement from me.
I don’t want to display the tree on the right. I want to display content from the files on the right.
Is there a possibility to read the content and display it on the right?

You can add a new mode into the filemanager

https://docs.webix.com/samples/64_file_manager/03_customization/03_adding_mode.html#!/02_events

and show the content of the selected file here.

Or, you can add a custom button / menu item and on activation show popup with file content. ( you will need to add a server-side handler for file content retrieving )

Hi, I’ve found a solution an the XB Software webside.
Comprehensive File Management System ( Software Development Case Studies | XB Software )
There is a preview with information from the picture on the ride side. Can I do this with the webix filemanager?

Hi @khvde ,
Please check the sample with a preview of the file

I know this sample. For textvalue is this a good preview.
But what is with pictures or other files? I want to display the file and their information. How can I do this? If I need 3rd party tools please give me a name to look for.