Looking at the example in FireBug reveals that the CSS for the arrow is:
.panel > ul > li a, .row > a So the arrow is displayed when an <li> has a link in it, or when the row class is used and there is a link in the div. I hope that helps. /Mogens On 23/04/2012 21:10 "sblair"<[email protected]>wrote: > Yes, that is exactly what I am looking for! I haven't been able to > get it to do that within a form though on the same row as an input > field. > > I'll be the first to admit js and IUI are not my strong subject > areas. What am I missing? > > Thanks. > Scott > > On Apr 21, 1:58 pm, Mogens Beltoft <[email protected]> wrote: > > How about the normal arrow found here:http://demo.iui-js.org/ > > > > /Mogens > > > > On 21-04-2012 01:04, sblair wrote: > > > > > > > > > I'm looking for a way to create a slider arrow to a sub-page from > > > a > > > row in a field that is also a text field in a form. > > > > > > From what I've seen I haven't found a way within a form to have > > > > a sub- > > > page slider. > > > > > Here's a pic of what I'm talking about: > > > <http://www.litespeeddesign.com/gallery/d/1847-2/IUI.PNG> > > > Where you see the "nudge" link I want that to actually be the > > > slider > > > arrow to take it to the sub-page form I have in IUI. > > > > > Below is a snippet of my current IUI code for that page if it > > > helps. > > > As you can see that row also functions as a textfield in the form. > > > > > <!-- *** NEW SCREEN *********** --> > > > <!-- *** IMAGE PRO INPUT SETTINGS *** --> > > > > > <form id="inputs" name="inputs" method="post" title="Inputs" > > > class="panel" selected="false"> > > > <fieldset> > > > > > <!-- Brightness --> > > > <div class="row"> > > > <label>Brightness</label> > > > <input name="textImageProInputBrightness" type="number" > > > min="-100.0" max="1000.0" step="1" value="<!--FUNCTIONCALL > > > WebIProInputBrightness -->" size="6" maxlength="6" align="right" > > > /> > > > </div> > > > > > <!-- Contrast --> > > > <div class="row"> > > > <label>Contrast</label> > > > <input name="textImageProInputContrast" type="number" > > > min="-100.0" max="1000.0" step="1" value="<!--FUNCTIONCALL > > > WebIProInputContrast -->" size="6" maxlength="6" align="right" /> > > > </div> > > > > > <!-- Input Horizontal Active --> > > > <div class="row"> > > > <label>Horiz Active</label> > > > <br> > > > <input name="textImageProInputHorizActive" type="number" > > > min="-100.0" max="1000.0" step="1" value="<!--FUNCTIONCALL > > > WebIProInputHorizActive -->" size="6" maxlength="6" align="right" > > > /> > > > <a href="#inputactive">Nudge</a> > > > </div> > > > > > <!-- Input Vertical Active --> > > > <div class="row"> > > > <label>Vertical Active</label> > > > <br> > > > <input name="textImageProInputVerticalActive" type="number" > > > min="-100.0" max="1000.0" step="1" value="<!--FUNCTIONCALL > > > WebIProInputVerticalActive -->" size="6" maxlength="6" > > > align="right" / > > > <a href="#inputactive">Nudge</a> > > > </div> > > > > > <!-- Input Horizontal Position --> > > > <div class="row"> > > > <label>Horiz Position</label> > > > <br> > > > <input name="textImageProInputHorizPosition" type="number" > > > min="-100.0" max="1000.0" step="1" value="<!--FUNCTIONCALL > > > WebIProInputHorizPosition -->" size="6" maxlength="6" > > > align="right" / > > > <a href="#inputposition">Nudge</a> > > > </div> > > > <!-- Input Vertical Position --> > > > <div class="row"> > > > <label>Vertical Position</label> > > > <br> > > > <input name="textImageProInputVerticalPosition" type="number" > > > min="-100.0" max="1000.0" step="1" value="<!--FUNCTIONCALL > > > WebIProInputVerticalPosition -->" size="6" maxlength="6" > > > align="right" /> > > > <a href="#inputposition">Nudge</a> > > > </div> > > > > > </fieldset> > > > <a class="whiteButton" type="submit" onclick="(function(event) > > > {return true;})()">Send</a> > > > > > <a class="whiteButton" href="javascript:reloadpage()">Refresh</a> > > > > > </form>- 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.
