Hi Team,
I would like to request the following image file extensions to be displayable using the RadEditor's ImageManager/DocumentManager.
Thank you!
Hi Chris,
Thank you for the feature request! We have implemented support for the following image file extensions in RadEditor's ImageManager and RadFileExplorer starting with the 2026 Q2 release:
Note: We could not find a recognized image format called "abci". If you have more details about this format, please let us know and we'll evaluate adding it.
IIS does not serve .avif, .heif, .heic, and .webp files by default. Without registering the MIME types, the browser will receive 404 (Not Found) errors when loading these images. Add the following to your application's web.config:
<configuration>
<system.webServer>
<staticContent>
<remove fileExtension=".avif" />
<mimeMap fileExtension=".avif" mimeType="image/avif" />
<remove fileExtension=".heif" />
<mimeMap fileExtension=".heif" mimeType="image/heif" />
<remove fileExtension=".heic" />
<mimeMap fileExtension=".heic" mimeType="image/heic" />
<remove fileExtension=".webp" />
<mimeMap fileExtension=".webp" mimeType="image/webp" />
</staticContent>
</system.webServer>
</configuration>The <remove> entries prevent "duplicate collection" errors in case the extension is already registered at the machine level.
This feature will be available in the Telerik UI for ASP.NET AJAX 2026 Q2 release.
Regards,
Rumen
Progress Telerik