Frontmatter
| id | 5343 |
| title | form.field.Select: originalConfig.value |
| state | Closed |
| labels | enhancementstale |
| assignees | tobiu |
| createdAt | Mar 15, 2024, 2:48 PM |
| updatedAt | Sep 12, 2024, 4:27 AM |
| githubUrl | https://github.com/neomjs/neo/issues/5343 |
| author | tobiu |
| commentsCount | 2 |
| parentIssue | null |
| subIssues | [] |
| subIssuesCompleted | 0 |
| subIssuesTotal | 0 |
| blockedBy | [] |
| blocking | [] |
| closedAt | Sep 12, 2024, 4:27 AM |
With the new separation of
inputValue(string) andvalue(record), we need to adjust theoriginalConfig.valuetoo.loading a form will only pass a
recordIdwhich then get mapped into a record insidebeforeSetValue().To check if a field
isDirty, we need to compare 2 records.We could either create a new logic to compare a
recordIdinside the orginialConfig with the current value record OR store the record inside the originalConfig too.@ExtAnimal