Expand my Community achievements bar.

SOLVED

How to call button from page activity in script to verify which button clicked ?

Avatar

Level 4

I have page with 2 buttons based on click of button i have to perform certain task. in Java script i need help to decide on the same, so its very importnat for me to read the button id . I assume it will be something like ctx.buuton_id.click() = True or something similar but dont know and hence need guidence . 

1 Accepted Solution

Avatar

Correct answer by
Level 3

Hi @Prasanna_Soni,

 

Sharing sample code. Please try the below logic.


<html>
<head>
<script>
function myFunction(selectedButton){
if(selectedButton=="Button1")
{
// Add javascript Code & 1st transition
document.controller.submit("next", "", "next"); ;
}
if(selectedButton=="Button2")
{
// Add javascript code & 2nd transition
document.controller.submit("next", "", "next2"); ;
}

}
</script>
</head>
<body style="" class="">
<form>
<p>Please click the button</p>
<div class="submit-field"><span>&gt;</span><button id="Button1" onclick="return myFunction(this.value)" value="Button1">Button1</button></div>
<div class="submit-field"><span>&gt;</span><button id="Button2" onclick="return myFunction(this.value)" value="Button2">Button2</button></div>
</form>
</body>
</html>

 

Thanks,

Amit

View solution in original post

2 Replies

Avatar

Correct answer by
Level 3

Hi @Prasanna_Soni,

 

Sharing sample code. Please try the below logic.


<html>
<head>
<script>
function myFunction(selectedButton){
if(selectedButton=="Button1")
{
// Add javascript Code & 1st transition
document.controller.submit("next", "", "next"); ;
}
if(selectedButton=="Button2")
{
// Add javascript code & 2nd transition
document.controller.submit("next", "", "next2"); ;
}

}
</script>
</head>
<body style="" class="">
<form>
<p>Please click the button</p>
<div class="submit-field"><span>&gt;</span><button id="Button1" onclick="return myFunction(this.value)" value="Button1">Button1</button></div>
<div class="submit-field"><span>&gt;</span><button id="Button2" onclick="return myFunction(this.value)" value="Button2">Button2</button></div>
</form>
</body>
</html>

 

Thanks,

Amit

Avatar

Administrator

Hi @Prasanna_Soni,

Was the given solution helpful to resolve your query or do you still need more help here? Do let us know.

Thanks!



Sukrity Wadhwa