CSR-1012 | call function on textLink click
This commit is contained in:
parent
8614942b89
commit
e0298b4fbf
1 changed files with 9 additions and 1 deletions
|
|
@ -13,7 +13,8 @@
|
||||||
href="#!"
|
href="#!"
|
||||||
data-bs-toggle="modal"
|
data-bs-toggle="modal"
|
||||||
:data-bs-target="getModalId"
|
:data-bs-target="getModalId"
|
||||||
aria-label="Modal window" />
|
aria-label="Modal window"
|
||||||
|
@click-event="focusOnZipInput" />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<modal
|
<modal
|
||||||
|
|
@ -103,6 +104,13 @@ export default {
|
||||||
this.$refs.zipCodeInputModal.resetButtonStyle();
|
this.$refs.zipCodeInputModal.resetButtonStyle();
|
||||||
},
|
},
|
||||||
|
|
||||||
|
focusOnZipInput() {
|
||||||
|
console.log("focusOnZipInput");
|
||||||
|
var input = document.getElementById("serviceZipCodeInput");
|
||||||
|
input.focus();
|
||||||
|
// this.$refs.zipInputTextQuestion.focus();
|
||||||
|
},
|
||||||
|
|
||||||
async setZip() {
|
async setZip() {
|
||||||
this.resetAlerts();
|
this.resetAlerts();
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue