I'm experiencing an issue with custom button icons not displaying in the RadEditor ribbon bar. I've added a custom button that functions correctly, but the icon specified in the ImageUrl property does not appear on the UI.
Issue Details:
I've added the following custom tool to the RadEditor toolbar:
xml<tool name="File" size="large" text="File Add" ImageUrl="~/Assets/images/add.png"/>
The button appears in the ribbon bar and the functionality works as expected, but the icon is not visible.
Troubleshooting Steps Already Taken:
- Verified the image exists at the specified path
- Tried both relative (~/) and absolute paths
- Checked for case sensitivity in the ImageUrl attribute (tried both ImageUrl and imageUrl)
- Specified width and height attributes for the image
Questions:
- Is there any specific requirement or setting I'm missing for custom icons in the ribbon bar?
- Could there be an issue with how custom icons are rendered in the ribbon bar versus standard toolbar?
- Are there any size limitations or format requirements for custom icons in the ribbon?
- Is there a different approach recommended for adding custom icons to ribbon bar buttons?