Problem with AutoComplete #2912
meliora-solution
started this conversation in
General
Replies: 1 comment 1 reply
-
We already fixed it, for the next Release: #2903 |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Problem with AutoComplete
I have save a record of a customer for example :
Name : Jason B
State California
City San Francisco
Then When I loaded existing customer with the region
SelectedState = new List { Provinces.FirstOrDefault(p => p.Id == Input.StateId) };
SelectedCity = new List { Citiess.FirstOrDefault(k => k.Id == Input.CityId) };
The clear item is locked. I can not changed the data.
I found the problem, I think it is the new version has a problem because when I used older version, it works:
I used older version :
And the older version works fine. So I guess the new version has a problem ???
Beta Was this translation helpful? Give feedback.
All reactions