I have an Ajax bound grid with a simple textbox in the editor template. This works fine with simple value binding.
<
input
...
data-bind
=
"value:valueproperty"
... />
Now I want to add attribute binding as described here: http://docs.telerik.com/kendo-ui/framework/mvvm/bindings/attr
<
input
...
data-bind
=
"attr:{data-someproperty:someproperty},value:valueproperty"
... />
The template no longer works. It does not even show the value anymore so it looks like the binding fails.
I also tried some variations like:
<
input
...
data-bind
=
"value:valueproperty, attr:{ 'data-someproperty':someproperty }"
... />
Is this supposed to work at all?