Advertisement
Advertisement
| 08.29.2008 at 06:18AM PDT, ID: 23688738 |
|
[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: |
function addRowToTable2()
{
var tbl = document.getElementById('tblFollowup');
var lastRow = tbl.rows.length;
// if there's no header row in the table, then iteration = lastRow + 1
//var iteration = lastRow;
var iteration = lastRow + 1;
var row = tbl.insertRow(lastRow);
// cell 0
var cell0 = row.insertCell(0);
var el = document.createElement("select");
el.name = 'idFollowUp[]';
el.options[0] = new Option('Please Select', '0');
el.options[1] = new Option('Call', '1');
el.options[2] = new Option('Send Email', '2');
el.options[3] = new Option('Send Thank You Note', '3');
el.options[4] = new Option('Send Marketing Material', '4');
el.options[5] = new Option('Send Proposal', '5');
el.options[6] = new Option('Introduce to Relevant RTI Staff', '6');
el.options[7] = new Option('Re-engage in 6-12 months', '7');
el.options[8] = new Option('Other', '8');
cell0.appendChild(el);
// cell 1
var cell1 = row.insertCell(1);
var el = document.createElement('input');
el.type = 'text';
el.name = 'OtherFollowUp[]';
el.size = 30;
cell1.appendChild(el);
var cell2 = row.insertCell(2);
var el = document.createElement('input');
el.type = 'button';
el.value = 'Remove';
el.onclick=function(){removeRow(row)};
cell2.appendChild(el);
}
function removeRow(o){
return o.parentNode.removeChild(o);
}
|