I believe I may have found a bug in the class assignment of spans when using a Grid with inline editing. When adding a new record with a field that is designated as a number, I get a textbox with arrow on the right to adjust the value up or down. Both arrows that are appearing are up arrows. I looked at the rendered code and saw the following:
notice the "k-i-arrow-n" and "k-i-arrow-s" classes. These are not located in the CSS file. I changed the classes to "k-arrow-up" and "k-arrow-down" and the arrows rendered properly.
I've added local style definitions on my page to correct this, but thought I would let you know to update the code. Thanks.
<
span
class
=
"k-select"
>
<
span
unselectable
=
"on"
class
=
"k-link"
>
<
span
unselectable
=
"on"
class
=
"k-icon k-i-arrow-n"
title
=
"Increase value"
>Increase value</
span
>
</
span
>
<
span
unselectable
=
"on"
class
=
"k-link"
>
<
span
unselectable
=
"on"
class
=
"k-icon k-i-arrow-s"
title
=
"Decrease value"
>Decrease value</
span
>
</
span
>
</
span
>
notice the "k-i-arrow-n" and "k-i-arrow-s" classes. These are not located in the CSS file. I changed the classes to "k-arrow-up" and "k-arrow-down" and the arrows rendered properly.
I've added local style definitions on my page to correct this, but thought I would let you know to update the code. Thanks.