private void commonInitialize() {
    super.initialize();

    // Create and set commands
    UICommand onSaveCommand = new UICommand("OnSave", this); // $NON-NLS-1$
    onSaveCommand.setTitle(constants.ok());
    onSaveCommand.setIsDefault(true);
    getCommands().add(onSaveCommand);
    getCommands().add(getCancelCommand());

    // Update data
    if (getVm() != null) {
      updateBootableDiskAvailable();
      getIsUsingScsiReservation().setIsAvailable(true);
    }
    updateDatacenters();
  }