I have a list of Person-type objects, which have a property called Type. This property must be selected from a drop-down.
When I click edit, a form with the information of that person selected to edit is displayed. A text box for the name and a select, for the Type
The problem is that when I edit each person for the first time, I receive an error message with the Binding and in the select its Type is not selected. Later yes.
I know that I can use the optionsValue option to have the value selected, but I want to replace the entire Type object of the person I am editing since I want the Name of the selected Type to be displayed.
If you notice, when you press edit, the SELECT that is displayed is unchecked, when it should appear with the Type that belongs to the person. When you begin to change the values of that SELECT, it does begin to update the person's, but initially, it appears without being selected.
Can someone get me a cable?