whoisandy / react-rangeslider

A lightweight responsive react range slider component.A fast & lightweight react component as a drop in replacement for HTML5 input range slider element.

Home Page:https://whoisandy.github.io/react-rangeslider/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Range control is using a list attribute

shailesh87 opened this issue · comments

Hi
I am trying to implement to range control.
But there is no any props define to handle it.

<input type="range" list="tickmarks">

<datalist id="tickmarks">
  <option value="3">
  <option value="4">
  <option value="5">
  <option value="6">
  <option value="12">
  <option value="18">
  <option value="24">
  <option value="30">
  <option value="36">
  <option value="42">
  <option value="48">
</datalist>

Is any help for that.