Hi Alexander, thanks for your reply,
I would be hard to prepare a runnable code because my data source is a private rest service; but I can give you some more detail.
the issue presents itself on every browser and it is functional!
I can't write any text inside the textbox..
It receives focus because its border gets darker on mousover, but on click I'm not allowed to write any text.
the main difference from your code is that I use a template..
Here is my code
<
div
id
=
"ucUser"
>
<
div
id
=
"listViewUser"
></
div
>
<
div
id
=
"pagerUser"
class
=
"k-pager-wrap"
></
div
>
...
</
div
>
then I append to listViewUtenti some <A> tags (styled like checked button)
var
dataSource =
new
kendo.data.DataSource({ data: userList, pageSize: 5 });
$(
"#listViewUser"
).kendoListView({
dataSource: dataSource,
template: kendo.template($(
"#scriptTemplateUser"
).html())
});
and this is my template
<
script
id
=
"scriptTemplateser"
type
=
"text/x-kendo-template"
>
<
div
class
=
"usersTemplate"
id
=
"user_${Key.IdUtente}"
>
<
div
class
=
"imageContainer"
>
<
img
src
=
"./Images/user.png"
/>
</
div
>
<
div
class
=
"anagraficaContainer"
>
<
div
class
=
"name"
>${Key.Alias}</
div
>
<
div
class
=
"email"
>${Key.Email}</
div
>
</
div
>
<
div
class
=
"roleContainer"
>
<
div
>
<
ul
id
=
"userMenu_${Key.IdUtente}"
>
<
li
><
span
class
=
"permessiHeader"
>${Key.Privilegio.Nome}</
span
></
li
>
<
li
class
=
"impiantiHeader"
>IMPIANTI ASSOCIATI: <
span
id
=
"countImpianti_${Key.IdUtente}"
>0</
span
>
<
ul
>
<
li
>
<
div
class
=
"impiantiTemplate"
style
=
"padding: 10px;"
>
<
div
class
=
"filterImpianti"
>
<
label
>Filtra impianti</
label
>
<
input
type
=
"text"
class
=
"k-textbox"
/>
</
div
>
</
div
>
</
li
>
</
ul
>
</
li
>
<
ul
>
</
div
>
<
div
>
<
span
class
=
"descrPrivilegio"
>
${Key.Privilegio.Descrizione}
</
span
>
</
div
>
</
div
>
</
div
>
</
script
>
Hope this can help.
Thanks
Fabio