<@U0F3291QE> 1. I will take a look at Workspaces :...
# tornadofx
d
@edvin 1. I will take a look at Workspaces 🙂 3. Is there a way to clear the ViewModel "edited" state so it goes back to pre-validation? I currently am doing the following after a commit
Copy code
override fun onCommit() {
        CategoryActions.addCategory(store, name.value)

        name.value = null

        dirtyProperties.clear()
        validationContext.validate(focusFirstError = false, decorateErrors = false)
    }
If I don't do this, the form shows all the required errors, because I've removed the data.