Jump to content

Automatically copy value from text field to password field


Recommended Posts

You may try the code below in your DataPage's footer. Please disable first the HTML editor.

<script>
var username = document.getElementById("InsertRecordUsername");
username.addEventListener("keyup", myFunction, true);

function myFunction() {
  document.getElementById("InsertRecordPassword").value = document.getElementById("InsertRecordUsername").value; 
  document.getElementById("InsertRecordPassword@Confirm").value = document.getElementById("InsertRecordUsername").value; 
}
</script>

 

Just change the ID attribute value based on your field names. Please refer to this guide for referencing Caspio Form Elements: https://forums.caspio.com/topic/4377-js-guide-caspio-form-elements/

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...