framework7io / framework7

Full featured HTML framework for building iOS & Android apps
http://framework7.io
MIT License
18.06k stars 3.23k forks source link

change doesn't work in React, is it the way I'm using it wrong? #4034

Closed gaohomway closed 2 years ago

gaohomway commented 2 years ago
        <List>
                <ListInput label="Name"
                           type="textarea"
                           placeholder="Your name"
                           clearButton
                           change={(e) => {
                               console.log(e)
                           }}>
                    <Icon icon="demo-list-icon" slot="media" />
                </ListInput>
        </List>
nolimits4web commented 2 years ago
onInput={(e) => {
  console.log(e)
}}>
gaohomway commented 2 years ago

@nolimits4web Why is the onInput event, the documentation does not mention onInput, how do the focus, blur and input events work?