D
Doogie
How is this done? I want to take a text box that is in a grid and
make it a combo box: Here is what the first part of the HTML looks
like now:
<input type="text" name="txt_SERVICE_SN"
onkeypress="filterNonNumeric()" size="5" maxlength="3"
style="text-align:right"
onchange="fieldEdited(this.parentNode.parentNode)">
I tried switching the "text" to be "combobox" and that doesn't work.
I saw some other code for other combo boxes (not in the grid) and saw
something like this:
<select id="test2"></select>
This will make a combo box. But I don't know why. I can't see
anything in there that uniquely identifies this as a combo box.
make it a combo box: Here is what the first part of the HTML looks
like now:
<input type="text" name="txt_SERVICE_SN"
onkeypress="filterNonNumeric()" size="5" maxlength="3"
style="text-align:right"
onchange="fieldEdited(this.parentNode.parentNode)">
I tried switching the "text" to be "combobox" and that doesn't work.
I saw some other code for other combo boxes (not in the grid) and saw
something like this:
<select id="test2"></select>
This will make a combo box. But I don't know why. I can't see
anything in there that uniquely identifies this as a combo box.