Hey Remi, I'm not sure if I'm totally following. On that row I already have an Input field so I need to be able to click on the input field to enter a number directly, so I can't really do any onclick events there. That field is placed in the center of the row though. On the right side of the same row I need to have a slider arrow or even a button that takes me to a subpage when clicked there. If you look at the image in my first post, you can see this where I have just a plain link that says "Nudge".
Thanks. Scott On Apr 24, 4:13 pm, Remi Grumeau <[email protected]> wrote: > 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- Hide quoted text - > > - Show quoted text - -- 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.
