Hello,
I am using the range slider via MVVM. I noticed that when i define the width via inline style on the div that sets the range slider, the tick marks disappear. However, if the width is removed, the tick marks appear. Please advise?
Edit: My range slider is sitting within a kendo template. I have attached a snippet of my code
<script type="text/x-kendo-template" id="filterAgeTemplate"> <div class="item--agerange"> <div class="agerange-wrap"> <div data-role="rangeslider" data-small-step="1" data-large-step="10" data-min="1" data-max="100" data-bind="value: ageRange, events: { change: vm_onAgeSelectorChange }" id="panel-filter__agerange" style="width:160px"> <input /> <input /> </div> <div class="agerange-title">Age Range</div> </div> <div class="agerange-btns "> <button class="button button__gray-outline"><span>Reset</span></button> </div> </div> </script>