Rick
Thanks. Your comment about the form submitting solved it. I realised I was clicking Enter to move off the changed field which resubmitted it. Thanks for the Christmas present.
Tony
I have a table with 15 rows containing a number of textboxes. If I change a numerical value in the last box in a row then, from the next row down to the end, the values must start from one more than...
cbVision,
I have been playing with your idea using document.write and see now how to use it. It's much easier than what I was trying to do. However, it seems to want to write to a new page. I need...
Thanks. The new row is actually built as a result of an onclick event and I thought it would be quicker to add the row at the client rather than sending to the server unnecessarily.
Tony
I have a table nested in a row of another table, briefly:
<table id='table1'>
<tr id='row1'>
<td id='col1'>
<table id='musictable1'>
<tr id='musicrow1'>
<td id='musiccol1'>
...
I'm extending the number of rows of a table by cloning the last row (=newLastRow).
Each row has a single input tag in it, with a name which includes the row number and an onclick function call...
tirna,
Thanks. I think I get the idea, but the point I don't understand is how to
"send the data in the popup back to the parent window in a query string".
My test popup form is:
I would like to find something like prompt(), but which allows me to put my own controls in the prompt rather than a text box, specifically radio buttons. Is there already a solution to this that...