When the down arrow key is pressed while this element is focused, focus moves to the given target element.
(&mut self, target: impl Into<Id>)
| 223 | /// When the down arrow key is pressed while this element is focused, |
| 224 | /// focus moves to the given target element. |
| 225 | pub fn focus_down(&mut self, target: impl Into<Id>) -> &mut Self { |
| 226 | self.config.focus_down = Some(target.into().id); |
| 227 | self |
| 228 | } |
| 229 | |
| 230 | /// Disables the automatic focus ring on this element. |
| 231 | pub fn disable_ring(&mut self) -> &mut Self { |
no outgoing calls