Logout
Add Rows to Report
Add Rows to Report
DEL_ROW
OPINION
SPORT
-- Select --
Football
Rugby
Baseball
Basketball
1 - 1
Add Rows to Report2
DEL_ROW
OPINION
SPORT
-- Select --
Football
Rugby
Baseball
Basketball
1 - 1
Report Query
SELECT '<img src="/i//delete.gif" onClick="delRow(this)" style="cursor:pointer;"></img>' del_row ,apex_item.text (1, NULL, 40, 100) opinion ,apex_item.select_list (2,'NULL', '-- Select --;NULL,Football;1,Rugby;2,Baseball;3,Basketball;4') sport FROM DUAL
JavaScript
<script language = "JavaScript"> function addRow(theRegionId) { var allTabs = document.getElementById(theRegionId).getElementsByTagName("table"); for(var i =0 ; i < allTabs.length ; i++) { if (allTabs[i].id.indexOf("datatable") >= 0) { table = document.getElementById(allTabs[i].id); break; } } var newRow = table.tBodies[0].rows[1].cloneNode(true); table.tBodies[0].appendChild(newRow); var inputElements = newRow.getElementsByTagName("input"); for (i = 0; i < inputElements.length; i++) { inputElements[i].value = ""; } } function delRow(theElement) { var rowToDelete = theElement.parentNode.parentNode; var parentTable = theElement.parentNode.parentNode.parentNode.parentNode; document.getElementById(parentTable.id).deleteRow(rowToDelete.rowIndex); } </script>
nobody
en-us