Sets focus to the element with the given ID.
(&mut self, id: impl Into<Id>)
| 1002 | |
| 1003 | /// Sets focus to the element with the given ID. |
| 1004 | pub fn set_focus(&mut self, id: impl Into<Id>) { |
| 1005 | self.context.set_focus(id.into().id); |
| 1006 | } |
| 1007 | |
| 1008 | /// Clears focus (no element is focused). |
| 1009 | pub fn clear_focus(&mut self) { |
no outgoing calls