Range Slider, how to set one Dual?

Hi all!
I’d already could create a Range Slider selector for one field.
Let’s Say I have
Table Users, Field Age (Integer)
Input Tag->Validation
Validate: Range
min: 18
max: 65
Custom Edit Tag

That is enough to set the selector as Range Slider…

But now, I want to create a Selector as Range Dual Slider… for Min and Max values fields.
Let’s Say I have
Table Room, Fields MinAge (Integer);MaxAge (Integer)
Input Tag->Validation
MinAge
Validate: Range
min: 18
max: 30
MaxAge
Validate: Range
min: 30
max: 65What should I put in my Custom Edit Tag?
And probably I should need som Javascript If I want to shoy values while I’m moving my selectors…
Any idea?Thanks all in Advance

See Bootstrap Range: https://getbootstrap.com/docs/4.1/components/forms/#range.

I did it, but it doen’t say anything about Dual Range Sliders.

Since you are making a Custom Edit Tag, you can add 2 range sliders as you needed, then you can use Row_Inserting and/or Row_Updating server event (see Server Events and Client Scripts in the help file) to get the 2 values and set them as field values yourself.