Disable input fields #770
-
How we can disable input field on change of props? |
Beta Was this translation helpful? Give feedback.
Answered by
chrisvxd
Jan 7, 2025
Replies: 1 comment 5 replies
-
Try using the resolveData((data, params) => {
return {
...data,
readOnly: {
"columns[*].span": data.props.distribution === "auto"
}
}
}); |
Beta Was this translation helpful? Give feedback.
5 replies
Answer selected by
chrisvxd
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Try using the
resolveData
API on your Column config: