Can we show actual image as a thumbnail in the content pane of the filemanager ?
I have read the documentation but didn't find any suitable reference.
this is my code
i am not using kendo
i am looking for blazor component telerik file manager control
for reference my current code is below
<SplitterPane Size="70%" Resizable="false">
<TelerikFileManager Data="@FileManagerData"
@bind-Path="@DirectoryPath"
Height="400px"
OnCreate="@OnCreateHandler"
OnUpdate="@OnUpdateHandler"
@bind-SelectedItems="@SelectedItems"
OnModelInit="@OnModelInitHandler"
OnDownload="@OnDownloadHandler"
OnDelete="@OnDeleteHandler"
>
<FileManagerSettings>
@* <FileManagerUploadSettings SaveUrl="@GetUploadUrl(randomNumberString,FileTypeId)" OnSuccess="@OnUploadSuccess">
</FileManagerUploadSettings> *@
</FileManagerSettings>
<FileManagerToolBar>
<FileManagerToolBarNewFolderTool />
@* @if (SCNameParam == "Land" && GetLevel() == "root-folder-path" && isAdmin == true) *@
@* <FileManagerToolBarUploadTool /> *@
<FileManagerToolBarCustomTool>
<TelerikButtonGroup>
<ButtonGroupButton OnClick="@OpenUploadPopUp">Upload</ButtonGroupButton>
</TelerikButtonGroup>
@* <TelerikUpload SaveUrl="@GetUploadUrl(randomNumberString,FileTypeId)"
RemoveUrl="api/remove"
Multiple="true"
AutoUpload="true"
OnSuccess="@OnUploadSuccess" /> *@
</FileManagerToolBarCustomTool>
<FileManagerToolBarSortTool />
<FileManagerToolBarSortDirectionTool />
<FileManagerToolBarSpacer></FileManagerToolBarSpacer>
@* <FileManagerToolBarViewDetailsTool></FileManagerToolBarViewDetailsTool> *@
<FileManagerToolBarFileViewTool />
<FileManagerToolBarCustomTool>
<TelerikButtonGroup>
<ButtonGroupButton OnClick="@HandleDetails">History</ButtonGroupButton>
</TelerikButtonGroup>
</FileManagerToolBarCustomTool>
<FileManagerToolBarSearchTool></FileManagerToolBarSearchTool>
</FileManagerToolBar>
</TelerikFileManager>
</SplitterPane>
and thats what i want to achieve

I have read the documentation but didn't find any suitable reference.
this is my code
i am not using kendo
i am looking for blazor component telerik file manager control
for reference my current code is below
<SplitterPane Size="70%" Resizable="false">
<TelerikFileManager Data="@FileManagerData"
@bind-Path="@DirectoryPath"
Height="400px"
OnCreate="@OnCreateHandler"
OnUpdate="@OnUpdateHandler"
@bind-SelectedItems="@SelectedItems"
OnModelInit="@OnModelInitHandler"
OnDownload="@OnDownloadHandler"
OnDelete="@OnDeleteHandler"
>
<FileManagerSettings>
@* <FileManagerUploadSettings SaveUrl="@GetUploadUrl(randomNumberString,FileTypeId)" OnSuccess="@OnUploadSuccess">
</FileManagerUploadSettings> *@
</FileManagerSettings>
<FileManagerToolBar>
<FileManagerToolBarNewFolderTool />
@* @if (SCNameParam == "Land" && GetLevel() == "root-folder-path" && isAdmin == true) *@
@* <FileManagerToolBarUploadTool /> *@
<FileManagerToolBarCustomTool>
<TelerikButtonGroup>
<ButtonGroupButton OnClick="@OpenUploadPopUp">Upload</ButtonGroupButton>
</TelerikButtonGroup>
@* <TelerikUpload SaveUrl="@GetUploadUrl(randomNumberString,FileTypeId)"
RemoveUrl="api/remove"
Multiple="true"
AutoUpload="true"
OnSuccess="@OnUploadSuccess" /> *@
</FileManagerToolBarCustomTool>
<FileManagerToolBarSortTool />
<FileManagerToolBarSortDirectionTool />
<FileManagerToolBarSpacer></FileManagerToolBarSpacer>
@* <FileManagerToolBarViewDetailsTool></FileManagerToolBarViewDetailsTool> *@
<FileManagerToolBarFileViewTool />
<FileManagerToolBarCustomTool>
<TelerikButtonGroup>
<ButtonGroupButton OnClick="@HandleDetails">History</ButtonGroupButton>
</TelerikButtonGroup>
</FileManagerToolBarCustomTool>
<FileManagerToolBarSearchTool></FileManagerToolBarSearchTool>
</FileManagerToolBar>
</TelerikFileManager>
</SplitterPane>
and thats what i want to achieve