Advertisement
Advertisement
| 10.03.2008 at 12:12PM PDT, ID: 23786147 |
|
[x]
Attachment Details
|
||
|
[x]
The Solution Rating System
|
||
With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.
Your Input Matters If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support. Thank you! |
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: 61: 62: 63: 64: 65: 66: 67: 68: 69: 70: 71: 72: 73: 74: 75: 76: 77: 78: 79: 80: 81: 82: 83: 84: 85: 86: 87: 88: 89: 90: 91: 92: 93: 94: 95: 96: 97: 98: 99: 100: 101: 102: 103: 104: 105: 106: 107: 108: 109: 110: 111: 112: 113: 114: 115: 116: 117: 118: 119: 120: 121: 122: 123: 124: |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>Untitled</title>
<script language="javascript">
function check(frm){
var tbl=document.getElementById('testTable');
var flag=true;
var sOpt=0;
for(i=0;i<tbl.rows.length-1;i++){
for(j=0;j<tbl.rows[i].childNodes.length;j++){
for(k=0;k<tbl.rows[i].childNodes[j].childNodes.length;k++){
if(tbl.rows[i].childNodes[j].childNodes[k].type=="checkbox"){
if(tbl.rows[i].childNodes[j].childNodes[k].checked){
sOpt++;
break;
}
}
if(tbl.rows[i].childNodes[j].childNodes[k].type=="text"){
if(tbl.rows[i].childNodes[j].childNodes[k].value.length>0){
sOpt++;
break;
}
}
}
}
if(sOpt>0) break;
}
if(sOpt<1){alert("There needs at least one information to be filled"); return false;}
return true;
}
function checkForSecond(){
var tbl=document.getElementById('testTable');
var flag=true;
for(i=0;i<tbl.rows.length-1;i++){
var sOpt=0;
for(j=0;j<tbl.rows[i].childNodes.length;j++){
for(k=0;k<tbl.rows[i].childNodes[j].childNodes.length;k++){
if(tbl.rows[i].childNodes[j].childNodes[k].type=="checkbox"){
sOpt++;
if(tbl.rows[i].childNodes[j].childNodes[k].checked && sOpt==2){
var win=window.open("check.html",'my_window','top=50,left=100,width=460,height=390','toolbar=no','scrollbars=no');
tbl.rows[i].childNodes[j].childNodes[k].checked=false;
break;
}
}
}
}
}
}
</script>
</head>
<body>
<form name="testing" method="post" onSubmit="return check(this);">
<table border="0" cellpadding="0" cellspacing="5" >
<tr>
<td width="169" nowrap="nowrap" align="right">Employee Number:</td>
<td width="452"><input name="emp_num" type="text" class="content" id="emp_num" size="8" maxlength="8" /> <span class="content">Required </span></td>
<td width="15"> </td>
</tr>
<tr>
<td nowrap="nowrap" align="right" class="content">Email Address:</td>
<td><input name="email_address" type="text" class="content" id="email_address" size="20" maxlength="20" />
<span class="content">Required </span></td>
<td> </td>
</tr>
<tr>
<td valign="top" nowrap="nowrap" align="right" class="content">Checkbox:</td>
<td valign="middle" nowrap="nowrap" class="content">
<input name="Box1" type="checkbox" id="Box1" value="Box1" />
Box1
<input name="Box2" type="checkbox" id="Box2" value="Box2" />
Box2
<input name="Box3" type="checkbox" id="Box3" value="Box3" />
Box3
<input name="Box4" type="checkbox" id="Box4" value="Box4" />
Box4
<input name="Box5" type="checkbox" id="Box5" value="Box5" />
Box5 (Must select atleast one)</td>
<td></td>
</tr>
<tr>
<td colspan="2" align="left" valign="top" nowrap="nowrap" class="content"><hr />
Text box 1</td>
<td valign="top"> </td>
</tr>
<tr>
<td colspan="2" align="left" valign="top" nowrap="nowrap" class="content"><br />
<textarea name="fault_message" cols="45" rows="5" wrap="physical" class="content" id="fault_message"></textarea>
Required
<hr /></td>
<td valign="top"> </td>
</tr>
<tr>
<td colspan="2" align="left" valign="top" nowrap="nowrap" class="content">Text box 2</td>
<td valign="top"> </td>
</tr>
<tr>
<td colspan="2" align="left" valign="top" nowrap="nowrap" class="content"><p align="left"><br />
<textarea name="components_affected" cols="45" rows="5" wrap="physical" class="content" id="components_affected"></textarea>
Not Required<hr /> </td>
<td valign="top"> </td>
</tr>
<tr>
<td colspan="3" align="right"valign="top" nowrap="nowrap" class="content"><div align="center">
<input type="submit" name="button" id="button" value="Submit" />
</div></td>
</tr>
</table>
</form>
</body>
</html>
|