Changeset 3138 for branches/2.2.2/www/my_base/user/preferences.jsp
- Timestamp:
- Feb 20, 2007, 8:34:13 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2.2.2/www/my_base/user/preferences.jsp
r2978 r3138 390 390 </td> 391 391 </tr> 392 <% 393 int numDecimals = FormatterSettings.getNumDecimals(sc); 394 %> 395 <tr> 396 <td class="prompt">Decimals</td> 397 <td> 398 <select name="decimals"> 399 <% 400 for (int i = 0; i < 8; i++) 401 { 402 %> 403 <option value="<%=i%>" <%=numDecimals == i ? "selected" : ""%>><%=i%> 404 <% 405 } 406 %> 407 <option value="-1" <%=numDecimals < 0 ? "selected" : ""%>>all 408 </select> 409 </td> 410 </tr> 392 411 393 412 </table>
Note: See TracChangeset
for help on using the changeset viewer.