Jump to content

Set the value from virtual field to text field and be editable for users


Recommended Posts

Hi, I have a submission form datapage with a virtual field that has its value set while on the page and a text field. I want the value of the virtual field to set the default value of the editable text field. Can I do this?

For example:
In the first 2 dropdowns, pick the first option available, I want to set Name to the value of Virtual8 'Recommended Name' after you select from the first 2 dropdowns, 'Recommended name' (Virtual8) is valued. I want 'Working Checklist Name' (Name) to then be valued with what is in Virtual8. 


 

image.png.e6e856d66c033d31c4a5a3f141521893.png

Link to comment
Share on other sites

Hi @KAPITYAN,

You may try this workaround. Add a Header/Footer to your form and add the following code in the footer:

<script>
function setSearchIssue(){
var issue = document.querySelector('input[id*="cbParamVirtual8"]').value;

document.getElementById("InsertRecordName").value = issue;
}
document.querySelector('input[id*="cbParamVirtual8"]').onchange = function() {setSearchIssue()};
</script>

Also refer to https://forums.caspio.com/topic/4377-js-guide-caspio-form-elements/ for help on addressing different 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...