Trait droom_ui::callback::callbacks::ValueChangedCb [] [src]

pub trait ValueChangedCb where Self: Element + 'static {
    fn set_valuechanged_cb<F>(&mut self, cb: F) -> Self where F: Callback<(Self,)> { ... }
    fn remove_valuechanged_cb(&mut self) -> Option<Box<Callback<(Self,)>>> { ... }
}

Usually called after the value of a control changed.

See the specific control documentation for more details.

Provided Methods

Implementors