Gcobani Mkontwana

Gcobani Mkontwana

  • 568
  • 1.9k
  • 406.7k

How to reduce layout in bootstrap?

Nov 11 2020 3:30 AM
Hi Team
 
I have layout and filemanager, the issue is the size and width as well height of my Filemanager, its not showing other details like folder, they are hidden by sidebar layout. Who can help me? i want other details are hidden be hidden well?
 
  1. @{  
  2.     ViewBag.Title = "File-Upload";  
  3. }  
  4.   
  5. @{   
  6.     string[] files = new string[] {"Edit""Open""|""Delete""Download""Rename""|""Details" };  
  7.     string[] folder = new string[] { "Edit""Open""|""Delete""Download""Rename""|""Details" };  
  8.     string[] layout = new string[] { "Edit""SortBy""View""Refresh""|""NewFolder""Upload""|""Details""|""SelectAll" };  
  9. }  
  10.   
  11. @using Syncfusion.EJ2;  
  12.   
  13.   
  14.     <div class="main-content">  
  15.         <div class="d-flex align-content-md-end justify-content-end">  
  16.               
  17.                 @Html.EJS().FileManager("file").AjaxSettings(new Syncfusion.EJ2.FileManager.FileManagerAjaxSettings  
  18.            {  
  19.                Url = "/Home/FileOperations",  
  20.                GetImageUrl = "/Home/GetImage",  
  21.                UploadUrl = "/Home/Upload",  
  22.                DownloadUrl = "/Home/Download"  
  23.   
  24.                // adding some extra functionality  
  25.            }).View(Syncfusion.EJ2.FileManager.ViewType.Details).DetailsViewSettings(new Syncfusion.EJ2.FileManager.FileManagerDetailsViewSettings  
  26.            {  
  27.                Columns = new List<Syncfusion.EJ2.FileManager.FileManagerColumn>  
  28.                {  
  29.                    new Syncfusion.EJ2.FileManager.FileManagerColumn()  
  30.                    {  
  31.                        Field = "name", HeaderText = "File Name", MinWidth = "50", Width = "50"  
  32.                    },  
  33.                    new Syncfusion.EJ2.FileManager.FileManagerColumn()  
  34.                    {  
  35.                        Field = "frm_created", HeaderText = "Date Created", Width = "50"  
  36.                    },  
  37.   
  38.                    new Syncfusion.EJ2.FileManager.FileManagerColumn()  
  39.                    {  
  40.                        Field = "frm_modified", HeaderText = "Date Modified", Width = "auto"  
  41.                    },  
  42.                    new Syncfusion.EJ2.FileManager.FileManagerColumn()  
  43.                    {  
  44.                        Field = "frm_modified_by", HeaderText = "Modified By", Width = "50"  
  45.                    },  
  46.                    new Syncfusion.EJ2.FileManager.FileManagerColumn()  
  47.                    {  
  48.                        Field = "size", HeaderText = "Size", Width = "50"  
  49.                    }  
  50.                }  
  51.   
  52.               }).Render()  
  53.             </div>  
  54.         </div>  
  55.       
 

Answers (2)