Automatically focus the execute button in the DacFx wizard summary screens (#6984)

* Focus piping for extension buttons

* Focus the done button when entering the summary page for DacFx wizard

* Adding internal value resets for extension-side button model.

* Correcting remark string
This commit is contained in:
Benjin Dubishar
2019-09-09 14:57:28 -07:00
committed by GitHub
parent 3e9b694e6f
commit 66cdbbb335
7 changed files with 46 additions and 2 deletions

View File

@@ -54,6 +54,9 @@ export class DacFxSummaryPage extends BasePage {
if (this.model.upgradeExisting && this.instance.selectedOperation === Operation.deploy) {
this.instance.wizard.generateScriptButton.hidden = false;
}
this.instance.wizard.doneButton.focused = true;
return true;
}