Expand my Community achievements bar.

Dive into Adobe Summit 2024! Explore curated list of AEM sessions & labs, register, connect with experts, ask questions, engage, and share insights. Don't miss the excitement.

How to enable the checkbox when the submit button is clicked in admin window

Avatar

Level 2

HI,

I have a requirement where i have to intoruduce a email textbox followed by submit button.

Once the user enter the email id and clicked on submit there is checked box set to enable.

How to do this using js & jsp. as i am new to js & jsp.

below is the design. and code which i have tried

-----------------------------------------------

    <div class = "owner-search">

    <input type="text" id="emailText" value="ID: EMail..">

<button onclick="emailFunction()">Search</button>

    <script>

function emailFunction() {

    var x = document.getElementById("emailText").value;

    alert("X value...." + x);

document.getElementById("emailText").value = x;

    var dummyData = "dummyData";

    alert("Dummy_new_data......" + dummyData);

    //document.getElementById('emailText').value = x;

}

</script>

<%

String name=request.getParameter("dummyData");

if(name!=null){

out.println("emailText12sssssssss345" + name);

}

else{

out.println("ESLE ..... " + name);

}

%>

<% String st="<script> document.writeln(dummyData)</script>";

if(st!=null){

    out.println("value=......."+st);

    }

else{

    out.println("value else=......."+st);

    }

%>

</div>

     </div>

<div class="text-box-new">

<input is="coral-textfield" id="email-check" placeholder="Enter your name" value="">

    <label for="email-check" id="nsfwbtn" class="btn btn-danger" > asas

              </div>

2 Replies

Avatar

Community Advisor

Hi,

Please check Coral checkbox and javascript API

Documentation | CoralUI



Arun Patidar

Avatar

Level 10

If you want this UI to appear within AEM admin UI - then Arun is correct - you must use Coral APIs.