Prevents clients updates. Remi will not send websockets update messages. The widgets are however iternally updated. So if the user updates the webpage, the update is shown.
(self)
| 417 | self.refresh_enabled = True |
| 418 | |
| 419 | def disable_update(self): |
| 420 | """ Prevents clients updates. Remi will not send websockets update messages. |
| 421 | The widgets are however iternally updated. So if the user updates the |
| 422 | webpage, the update is shown. |
| 423 | """ |
| 424 | self.ignore_update = True |
| 425 | |
| 426 | def enable_update(self): |
| 427 | self.ignore_update = False |