In a recent blog post on styling you used the following:
<span class="k-textbox k-space-right">
<input id="lastName" type="text" />
<a href="#" data-bind="click: clear">
<span class="k-icon k-i-close"></span>
</a>
</span>
which works great for regular inputs. However, I would like to add a + button to a Combo or DropDown. How would I go about doing that?
<span class="k-textbox k-space-right">
<input id="lastName" type="text" />
<a href="#" data-bind="click: clear">
<span class="k-icon k-i-close"></span>
</a>
</span>
which works great for regular inputs. However, I would like to add a + button to a Combo or DropDown. How would I go about doing that?