JavaScript/jQuery FileManager - itemView.details
Configures the "Details" file system representation mode.
                        Type:
                    
        columns[]
Configures the columns.
                        Type:
                    
                
                    Default Value: ['thumbnail', 'name', 'dateModified', 'size']
                
        This property accepts an array of objects, where each object configures a single column. If a column does not need to be customized, this array may include the name of the field that provides data for this column.

jQuery
JavaScript
$(function () {
    $("#file-manager").dxFileManager({
        itemView: {
            details: {
                columns: [
                    "thumbnail", "name",
                    {
                        dataField: "category",
                        caption: "Category",
                        width: 95
                    },
                    "dateModified", "size"
                ]
            }
        },
        // ...
    });
});Feedback