activate method

void activate()

Activates an editable for editing, disables all other active items

Implementation

void activate() {
  if (_event == null) {
    throw AlohaException('AlohaEditable - Activate, no event specified');
  }
  _context!.callMethod('activate', [_event]);
}