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
I am trying to update local variable via change event of the range slider component.
change
Use code like this:
const [range, setRange] = useState<IgrRangeSliderValue | undefined>(); ... <IgrRangeSlider lower={range?.lower} upper={range?.upper} change={(_s, e) => setRange(e.detail)}></IgrRangeSlider> <p>Range is {range?.lower} - {range?.upper}</p>
On each change the e.detail contains {lower: 0, upper: 0}. Here is the result:
e.detail
{lower: 0, upper: 0}
change event should emit correct values in its detail.
detail
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description
I am trying to update local variable via
change
event of the range slider component.Steps to reproduce
Use code like this:
Result
On each change the

e.detail
contains{lower: 0, upper: 0}
. Here is the result:Expected result
change
event should emit correct values in itsdetail
.The text was updated successfully, but these errors were encountered: