Changeset 13716 for trunk/FACT++/www
- Timestamp:
- 05/14/12 14:32:03 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/FACT++/www/smartfact/index.js
r13703 r13716 591 591 if (cols.length>2 && cols[2].length>0) 592 592 { 593 cell2.id = "data"+ counter;593 cell2.id = "data"+z+"-"+counter; 594 594 cell2.setAttribute("data-form", cols[2]); 595 595 cell2.appendChild(document.createTextNode("---")); … … 928 928 continue; 929 929 930 if (tbody.rows[line-1]==undefined) 931 continue; 932 933 var c = tbody.rows[line-1].cells[1]; 934 if (c == undefined) 935 continue; 936 937 var e = c.childNodes[0].rows[0].cells[1]; 930 var e = document.getElementById("data"+z+"-"+line); 938 931 if (e == undefined) 939 932 continue;
Note:
See TracChangeset
for help on using the changeset viewer.