jeff5656 Posted November 5, 2008 Share Posted November 5, 2008 I know absolutely nothing about javascript so I don't know how to expand the below code. I simply want to add ANOTHER required field called "pod" How do I modify the below code so both variables are required? Thanks. The below does indeed work for the variable "patient". <script type="text/javascript" src="../consults/formvalidator.js"></script> <script type="text/javascript"> <!-- function check(formname, submitbutton) { var errors = ''; errors += checkText(formname, 'patient', 'Patient Name'); return checkThisForm(formname, submitbutton, errors); } //--> Quote Link to comment Share on other sites More sharing options...
F1Fan Posted November 5, 2008 Share Posted November 5, 2008 It looks like there's two more functions "checkText" and "checkThisForm" that are not listed. Quote Link to comment Share on other sites More sharing options...
jeff5656 Posted November 6, 2008 Author Share Posted November 6, 2008 The only other thing in this php code is this: <input type="submit" value="Add patient" onClick="return check('newsubmit', this.name)"/> There is also a separate .js file that this script refers to. Do I need to show you that? That file is 125 lines. Quote Link to comment Share on other sites More sharing options...
Adam Posted November 6, 2008 Share Posted November 6, 2008 Yeah show us the formvalidator.js script .. Quote Link to comment Share on other sites More sharing options...
jeff5656 Posted November 6, 2008 Author Share Posted November 6, 2008 // JavaScript Document function checkThisForm(formname, submitbutton, errors) { if (errors == '') { //eval(formname+'.'+submitbutton+'.disabled=true'); //eval('document.'+formname+'.submit()'); return true; } else { alert(errors); return false; } } function checkText(formname, textboxname, displaytext) { var localerror = ''; if(Trim(eval('document.'+formname+'.'+textboxname+'.value'))=='') { localerror = '- '+displaytext+' is Required.\n'; } else localerror = ''; return localerror; } function checkNum(formname, textboxname, displaytext) { var localerror = ''; if(isNaN(eval('document.'+formname+'.'+textboxname+'.value'))) { localerror = '- '+displaytext+' Should Be A Number With No Spaces.\n'; } else localerror = ''; return localerror; } function checkSpaces(formname, textboxname, displaytext) { var valid = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ_'; // define valid characters var localerror = ''; if(!isValid(Trim(eval('document.'+formname+'.'+textboxname+'.value')), valid)) { localerror = '- '+displaytext+' Should Not Contain Spaces.\n'; } else localerror = ''; return localerror; } function checkSelect(formname, selectboxname, displaytext) { var localerror = ''; if(eval('document.'+formname+'.'+selectboxname+'.selectedIndex')==0) { localerror = '- '+displaytext+' is Required.\n'; } else localerror = ''; return localerror; } function getRadio(formname, radioname, displaytext) { for (var i=0; i < eval('document.'+formname+'.'+radioname+'.length'); i++) { if (eval('document.'+formname+'.'+radioname+'[i].checked')) { var rad_val = eval('document.'+formname+'.'+radioname+'[i].value'); return rad_val; } } } function checkRadio(formname, radioname, displaytext) { var localerror = ''; var rad_val = ''; for (var i=0; i < eval('document.'+formname+'.'+radioname+'.length'); i++) { //check every radio button by that name if (eval('document.'+formname+'.'+radioname+'[i].checked')) { //if it is checked rad_val += '-'; } else rad_val += ''; } if (rad_val=='') { localerror = '- '+displaytext+' is Required.\n'; } return localerror; } function autoComplete (field, select, property) { /*onKeyUp="autoComplete(this,this.form.selectboxname,'value',false)" - add this to textbox where you are typing*/ var found = false; for (var i = 0; i < select.options.length; i++) { if (select.options[i][property].toUpperCase().indexOf(field.value.toUpperCase()) == 0) { found=true; break; } } if (found) { select.selectedIndex = i; } else { select.selectedIndex = -1; } if (field.createTextRange) { if (!found) { field.value=field.value.substring(0,field.value.length-1); return; } var cursorKeys ="8;46;37;38;39;40;33;34;35;36;45;"; if (cursorKeys.indexOf(event.keyCode+";") == -1) { var r1 = field.createTextRange(); var oldValue = r1.text; var newValue = found ? select.options[i][property] : oldValue; if (newValue != field.value) { field.value = newValue; var rNew = field.createTextRange(); rNew.moveStart('character', oldValue.length) ; rNew.select(); } } } } function Trim(s) { while ((s.substring(0,1) == ' ') || (s.substring(0,1) == '\n') || (s.substring(0,1) == '\r')) { s = s.substring(1,s.length); } while ((s.substring(s.length-1,s.length) == ' ') || (s.substring(s.length-1,s.length) == '\n') || (s.substring(s.length-1,s.length) == '\r')) { s = s.substring(0,s.length-1); } return s; } function isValid(string,allowed) { // var valid = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'; // define valid characters for (var i=0; i< string.length; i++) { if (allowed.indexOf(string.charAt(i)) == -1) return false; } return true; } Quote Link to comment Share on other sites More sharing options...
jeff5656 Posted November 7, 2008 Author Share Posted November 7, 2008 Does anyone know the answer yet? Quote Link to comment Share on other sites More sharing options...
F1Fan Posted November 7, 2008 Share Posted November 7, 2008 function check(formname, submitbutton) { var errors = ''; errors += checkText(formname, 'patient', 'Patient Name'); errors += checkText(formname, 'pod', 'pod'); // the second 'pod' should really be a description of the field named 'pod' return checkThisForm(formname, submitbutton, errors); } It looks like this JS file you have included has functions for checking text, numbers, select boxes, and more. Look through it and replace "checkText" with whatever fits. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.