- IMS Knowledge Base
- Code Snippets
- FileBound
-
FileBound
- Add Content
- Active Directory
- Administration
- Automation Processes
- Basic Search & Retrieval
- Capture
- Clipboard
- Connect
- Database
- Document Actions
- DocuSign
- E-Forms
- Enterprise Service
- Full Text Search
- General
- HelloSign
- Https
- Importer Pro
- Installation
- Licensing
- Maintenance
- Office 365
- Records Management
- Reports
- SAML
- Web Viewer
- Windows Viewer
- Workflow
-
Windows Settings
-
Scanners
-
Psigen
-
Code Snippets
-
PaperVision
Compare 2 Text Fields in a FileBound Form
This is a script to put in the FileBound Form Designer to compare two text fields and throw a popup error after clicking SUBMIT that says they don't match:
function checkform(){
if(document.getElementById("SingleLineText6").value != document.getElementById("SingleLineText7").value)
{
alert("Answers must be the same");
return false;
}
return true;
}