This is a UI question, dealing with HTML and javascript, to see how to get the functionality I want without confusing the user
I have a table below that has a select box as the first cell in my table.
This application has no submit button. You change the select box, the database is updated, you change something in an input box the database is updated.
Everything is based on the onchange event in javascript.
My problem is that the user will need to be able to add items to the select box, as it is not an exclusive list. But, I want to keep the UI consistent, so I want to allow the user to just type in the select box, hence the need for a combo box.
But, I don't want a combobox that is two elements stacked, as that will make each cell higher than it needs to be.
So, the other option is to use a onkeydown event and if they use characters from ASCII 32-97 or so (only English words), then that will go into an input box, so, when they click away, the select box has a new item in it.
But, in order to do this, I will need to hide/unhide two elements sharing the same place, an input box and a select box, both in the first column of the table. The shifting of the elements will be confusing.
--> QUESTION 1: So, how can I make this less distracting to the user? <--
--> QUESTION 2: Is there another way to have an editable select box that may be less distracting in HTML? <--
This is a UI question, the table below is because it seems to be important to some people
The table is here purely for illustrative purposes.
<table border="1" bgcolor="#ffcc99" width="90%">
<thead>
</thead>
<tbody>
<tr>
</tr>
<tr>
</tr>
<tr>
<td>
<select name="SourceFunds*SourceID*SourceID^SourceNumber*1113^1">
<option value="1119">Capital Maintenance</option>
<option value="1063">Waterworks Fund</option>
<option value="1114">Waterworks Fund/Other Sources</option>
</select>
</td>
<td>
<input type="text" value="79" name="SourceFunds*SourceOfFundsYr1*SourceID^SourceNumber*1113^1"/>
</td>
<td>
<input type="text" value="0" name="SourceFunds*SourceOfFundsYr2*SourceID^SourceNumber*1113^1"/>
</td>
<td>
<input type="text" value="0" name="SourceFunds*SourceOfFundsYr3SourceID^SourceNumber*1113^1"/>
</td>
</tr>
</tbody>
</table>
