- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
function addRowToTable(){
var tBody = document.getElementById("table_"+currentLocator).getElementsByTagName("TBODY")[0];
var row = document.createElement("TR");
tBody.appendChild(row);
for (i=1;i<=6;i++){
var td = document.createElement("TD");
if (i==1){
td.className="locatorTxt";
} else {
td.className="locatorDtlTxt";
}
td.innerHTML=" ";
if ( i==2 ){
td.innerHTML=CollectionsUtils.getSelectedItem(selectCollectorId);
td.name = prefNameAsg+currentLocator;
} else if (i==3) {
td.innerHTML=ControlUtils.getValueById(percentId)+"%";
td.name=prefPercentAsg+currentLocator;
} else if ( i== 4) {
td.name=prefJobAsg+currentLocator;
} else if ( i==5 ) {
td.name=prefPercentChg+currentLocator;
td.innerHTML=ControlUtils.getValueById(percentId)+"%";
} else if ( i==6 ) {
td.name=prefJobChg+currentLocator;
}
row.appendChild(td);
}
recalulateTable( prefPercentAsg, prefJobAsg, "");
recalulateTable( prefPercentChg, prefJobChg, "");
}
Комментарии (0) RSS
Добавить комментарий