Your Data property is bound to expression which will be reevaluated on every state change and will return new objects every time - no selection can be preserved with such binding. You can assign this to a variable when the page is initialized to avoid such problems.
@enchev Thank you I can do that but do you also know how can i give expression in TextProperty Of the radzen dropdown ?
I have my object as some thing like below
[
{
id: 1,
Code:"hello"
Values: [
{
Key=default,
Value="How are you"
}
]
},
{
id: 2,
Code:"good"
Values: [
{
Key=default,
Value="I am good"
}
]
},
]
I want my TextProperty to use "Value" so that it displays such values like "How are you" ,"I am doing good" from given above example . looking at documentation i can't really find any . would be great if you can share some light,