Hi all,
I have an issue with AutoComplete widget when I try to style it as "INPUT WITH ICON ON THE LEFT" (you can find an example here http://demos.telerik.com/kendo-ui/styling/index )
Clear value cross is on the left instead to be on the right!
You can use code below to reproduce the issue.
There's anything I can do to resolve this issue?
Many thanks,
Emanuele
<div class=
"demo-section k-content"
>
<span class=
"k-textbox k-space-left"
style=
"width: 100%;"
>
<a href=
"#"
class=
"k-font-icon k-icon k-i-marker-pin"
> </a>
<input id=
"countries"
style=
"width: 100%;"
/>
</span>
</div>
<script>
$(document).ready(
function
() {
var
data = [
"Italy"
,
"Vatican City"
];
$(
"#countries"
).kendoAutoComplete({
dataSource: data,
filter:
"startswith"
,
placeholder:
"Select country..."
,
separator:
", "
});
});
</script>