What about just an onclick event on the input?
That might be the only easy solution i would see...


<div class="row">
  <label>Horiz Position</label>
  <input name="textImageProInputHorizPosition" type="number" min="-100.0"
max="1000.0" step="1" value="<!--FUNCTIONCALL WebIProInputHorizPosition
-->"  size="6" maxlength="6" align="right" id="horiz_pos_val"
 onclick="iui.showPageById('horiz_change')">
</div>


with another screen being


<ul id="horiz_change" title="Horiz Position">
  <li><a href="javascript:document.getElementById('
horiz_pos_val').value=0;iui.goBack()">0</a></li>
  <li><a href="javascript:document.getElementById('horiz_pos_val').value=1
;iui.goBack()">1</a></li>
  <li><a href="javascript:document.getElementById('horiz_pos_val').value=2
;iui.goBack()">2</a></li>
  <li><a href="javascript:document.getElementById('horiz_pos_val').value=3
;iui.goBack()">3</a></li>
</ul>


Quick test results the following:
http://we-are-gurus.com/labs/iui/sandbox/select-menu.html

(even if i would use history.go(-1) instead of iui.goBack() but Sean would
disapprove...)

Remi


On Tue, Apr 24, 2012 at 8:21 PM, sblair <[email protected]> wrote:

> Meh...  That's what I was afraid of.  Would it instead be possible to
> put a button on the same row there with the input field without much
> trouble?  Instead of generating the slider arrow control, just putting
> a button there instead?
>
> Thanks.
> Scott

-- 
You received this message because you are subscribed to the Google Groups 
"iPhoneWebDev" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/iphonewebdev?hl=en.

Reply via email to