We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
As of now, we can only use the current group of Data... components to compute a value:
Data...
<input data-component="DataModel" type="text"> Length: <span data-component="DataComputed" data-option-compute="value.length"></span>
It might be useful to be able to use the value of multiple groups of Data... components, for example to add multiple values:
<input data-component="DataModel" data-option-name="a" type="number"> + <input data-component="DataModel" data-option-name="b" type="number"> = <input data-component="DataGroupComputed" data-option-names="a b" data-option-compute="a.value + b.value" type="number" readonly>
We could also have a similar DataGroupEffect.
DataGroupEffect
The text was updated successfully, but these errors were encountered:
No branches or pull requests
As of now, we can only use the current group of
Data...
components to compute a value:It might be useful to be able to use the value of multiple groups of
Data...
components, for example to add multiple values:We could also have a similar
DataGroupEffect
.The text was updated successfully, but these errors were encountered: