Kendo UI for jQuery Badge Overview
The Badge is an absolutely positioned element that is used to decorate avatars, navigation menus, or other components in the application when the visual notification is needed.
It also provides customizing its content through templates, setting different shapes and layouts.
The Badge is part of Kendo UI for jQuery, a
professional grade UI library with 110+ components for building modern and feature-rich applications. To try it out sign up for a free 30-day trial.
Initializing the Badge
To initialize the Badge, you can use virtually any span
element. The following example demonstrates how to initialize the Badge.
<a class="k-button"><span id="badge">42</span></a>
<script>
$(document).ready(function(){
$("#badge").kendoBadge({
shape: "rectangle"
});
});
</script>
Basic Configuration
The badge also provides the choice to be inline or overlay. To make the badge overlay add the k-badge-overlay
class to the parent parent element.
<a class="k-button k-badge-overlay"><span id="badge">42</span></a>
<script>
$(document).ready(function(){
$("#badge").kendoBadge({
shape: "rectangle",
});
});
</script>
Using templates
Badge content may be customized using templates.
<a class="k-button k-badge-overlay"><span id="badge"></span></a>
<script>
$(document).ready(function(){
$("#badge").kendoBadge({
data: {
value: 11
},
template: "#= +value > 10 ? '9+' : value #"
});
});
</script>
Referencing Existing Instances
You can access an existing Button instance by using the .data() jQuery method which gets executed by the jQuery object of the originating element.
<a class="k-button k-badge-overlay"><span id="badge">42</span></a>
<script>
$(document).ready(function(){
$("#badge").kendoBadge({
shape: "rectangle"
});
});
var badge = $('#badge').data('kendoBadge');
</script>