var parenttbl = window.opener.document.getElementById(\"row_panel\");
var newel = window.opener.document.createElement('td');
var elementid = document.getElementsByTagName(\"td\").length
newel.setAttribute('id',elementid);
newel.onclick = function() {document.forms.form_save_ent.submit();};
parenttbl.appendChild(newel);
Здесь создаю ячейку td в таблице и одновременно прикрепляю onclick.
В результате ошибка "Uncaught TypeError: Cannot read property 'submit' of undefined"