Unplanned
Last Updated: 28 Jul 2025 06:46 by ADMIN
Matthew
Created on: 21 Jul 2025 10:23
Type: Feature Request
0
Additional Icons (Ship, 'new', deceased, etc.)

Kendo has a wide variety of icons which we already use in our project, however some icons which we'd expect to be included are missing.

For example, despite having icons for all different kinds of vehicles (concrete truck, sweeper, van, etc.), there are no icons of ships. 

Ideally for our project, we would want icons included to denote a 'new' user (preferably something with the word 'new' in it, see the attached image for example), the ship icon mentioned above, plus another to denote a deceased person. Of course, any other additional icons would also be welcome.

Attached Files:
1 comment
ADMIN
Vessy
Posted on: 28 Jul 2025 06:46

Hi, Matthew,

Thanks a lot for the submitted feature request!

While the requested new and ship icons are not available in the built-in icons package shipped by us, you can use the SVG icon component/function available in all products that gives the ability to use any custom SVG icon you chose.

For example, in a Kendo UI for jQuery scenario you can achieve the same through the kendo.ui.icon method that allows the rendering of a custom icon as demonstrated here:

<script>
   var icon =  kendo.ui.icon({
       type: 'svg', // if default is svg you can omit this option
       icon:{
           viewBox: '0 0 512 512',
           content: '<path d="M448 128h-64l-64-64H192l-64 64H64c-17.6 0-32 14.4-32 32v288c0 17.6 14.4 32 32 32h384c17.6 0 32-14.4 32-32V160c0-17.6-14.4-32-32-32zM256 416c-61.9 0-112-50.1-112-112s50.1-112 112-112 112 50.1 112 112-50.1 112-112 112zm64-112c0 35.3-28.7 64-64 64s-64-28.7-64-64 28.7-64 64-64 64 28.7 64 64z" />'
       }
   });
   $('body').append(icon);
</script>

 

Regards,
Vessy
Progress Telerik

Love the Telerik and Kendo UI products and believe more people should try them? Invite a fellow developer to become a Progress customer and each of you can get a $50 Amazon gift voucher.