Kendo Tooltip HTML content
5.5 Kendo Tooltip HTML content
<script ref="template" type="text/x-kendo-template">
<div style="margin-bottom: 20px;">
<span>Filter</span>
</div>
<div style="padding-left: 20px;">
<div class="form-checkboxes-list-container">
<span>${filter.orderStates.length}</span> <!--WORKS HERE-->
<ul id="recipe-status-list">
<li repeat.for="state of filter.orderStates"> <!--NOT WORK HERE-->
<input type="checkbox" id="checkbox_${state}" name="checkbox_${state}" value.bind="${state}" checked.bind="$parent.selectedStates"/>
<label for="checkbox_${state}"><span></span>${state}</label>
</li>
</ul>
</div>
<div>
<select style="width: 100%;" value.bind="selectedRecipe">
<option></option>
<option repeat.for ="recipe of filter.recipes" model.bind="recipe"></option>
</select>
</div>
<div>
<button>Filter</button>
<button>Clear</button>
</div>
</div>
</script>Here is the explanation of what is happening behind the scenes:
Last updated