reactjs - react-datetime onClick event stop propagation -
i working https://github.com/youcanbookme/react-datetime standard out of box. task @ hand stop click event propagating further parents because toggles parents box.
anyone knows how add click handler?
for example works:
(<input type="text" value={item.service_close_date} onclick={(e) => { e.stoppropagation(); } } />);
but not:
(<datetime value={item.service_close_date} onclick={(e) => { e.stoppropagation(); } } />);
there no click handler in datetime see.
wiki
Comments
Post a Comment