tiagobento commented on issue #3292: URL: https://github.com/apache/incubator-kie-tools/issues/3292#issuecomment-4247176866
Changes are committed to the in-memory DMN model once you're done editing (onBlur). When you click an external button, onBlur is triggered before your click event is processed in the Save button. However, we have a hard-coded debounce mechanism which waits 500ms for changes to propagate to the in-memory DMN model after a change. We can make this configurable, and make changes be instantaneous. This way (debounce timeout = 0), there won't be any debouncing mechanism and you'll achieve the result you want. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
