mirror of
https://github.com/gradio-app/gradio.git
synced 2025-03-31 12:20:26 +08:00
docs: more explicit pharsing for gr.on (#7170)
Signed-off-by: thiswillbeyourgithub <26625900+thiswillbeyourgithub@users.noreply.github.com>
This commit is contained in:
parent
40e6ddf911
commit
f2fc1cc81a
@ -192,9 +192,9 @@ You can use decorator syntax as well:
|
||||
|
||||
$code_on_listener_decorator
|
||||
|
||||
You can use `gr.on` to create "live" events by binding to the change event of all components. If you do not specify any triggers, the function will automatically bind to the change event of all input components.
|
||||
You can use `gr.on` to create "live" events by binding to the `change` event of components that implement it. If you do not specify any triggers, the function will automatically bind to all `change` event of all input components that include a `change` event (for example `gr.Textbox` has a `change` event whereas `gr.Button` does not).
|
||||
|
||||
$code_on_listener_live
|
||||
$demo_on_listener_live
|
||||
|
||||
You can follow `gr.on` with `.then`, just like any regular event listener. This handy method should save you from having to write a lot of repetitive code!
|
||||
You can follow `gr.on` with `.then`, just like any regular event listener. This handy method should save you from having to write a lot of repetitive code!
|
||||
|
Loading…
x
Reference in New Issue
Block a user