I have a problem with a dropdownlist in a grid. When I initially select something from the grid, the correct values are read and put into the object of the field the dropdownlist is in. But when the default "read" method of the grid runs, they show up in the data of the row and not in the object in the data of that row?!
it looks a bit like this:
it looks a bit like this:
- when I pick from a dropdownlist
-
1.
{
2.
data:{
3.
"property1"
: {
4.
"value"
: 123,
5.
"text"
:abc
6.
}
7.
}
- when I read from the datasource
1.
{
2.
data:{
3.
"value"
: 123,
4.
"text"
:abc
5.
}