rtnMichael
Programmer
this is a continuing question from thread 215-373919 in this same forum.
I have this piece of code and was wondering how I would go about adding text boxes in the table, so to make it easier to transfer to another table on the same page (kinda like a refresh of the page, but with chosen parameters moved to the next table while being deleted from the original)
<td valign=top>
<select name=list_of_params size=10 multiple style="width:275px;height:200;">
<option value="5048"><small>one</small>
<option value="3500"><small>two</small>
<option value="3500"><small>three</small>
<option value="3500"><small>four</small>
</select>
</td>
and will transfer (with button) over to this table, right next to it:
<td valign=middle align=top>
<input type='submit' name='btnSubmit' value='> > '
onclick=move_exclusion(list_of_params);>
<input type='submit' name='btnSubmit' value=' < <'
onclick=form.submit();>
</td>
<td valign=top>
<select name=pidstradee size=10 multiple
style="width:275px;height:200;">
<option value="4656"><small></small>
<option value="4656"><small></small>
<option value="4656"><small></small>
<option value="4656"><small></small>
</select>
</td>
What would the function look like, or would I have to create some sort of query for it to move to another table?
Thanks
M
I have this piece of code and was wondering how I would go about adding text boxes in the table, so to make it easier to transfer to another table on the same page (kinda like a refresh of the page, but with chosen parameters moved to the next table while being deleted from the original)
<td valign=top>
<select name=list_of_params size=10 multiple style="width:275px;height:200;">
<option value="5048"><small>one</small>
<option value="3500"><small>two</small>
<option value="3500"><small>three</small>
<option value="3500"><small>four</small>
</select>
</td>
and will transfer (with button) over to this table, right next to it:
<td valign=middle align=top>
<input type='submit' name='btnSubmit' value='> > '
onclick=move_exclusion(list_of_params);>
<input type='submit' name='btnSubmit' value=' < <'
onclick=form.submit();>
</td>
<td valign=top>
<select name=pidstradee size=10 multiple
style="width:275px;height:200;">
<option value="4656"><small></small>
<option value="4656"><small></small>
<option value="4656"><small></small>
<option value="4656"><small></small>
</select>
</td>
What would the function look like, or would I have to create some sort of query for it to move to another table?
Thanks
M