Hi Bob,<div><br></div><div>You might want to look at the BubbleTip integrated into JQueryWidget box to load:</div><div><br></div><div>Gofer it</div><div>   squeaksource: &#39;MetacelloRepository&#39;;</div><div>   package: &#39;ConfigurationOfJQueryWidgetBox&#39;;</div>
<div>   load.</div><div><br></div><div>ConfigurationOfJQueryWidgetBox load.</div><div><br></div><div>Nick<br><br><div class="gmail_quote">On 28 February 2012 16:09,  <span dir="ltr">&lt;<a href="mailto:bobn@rogers.com">bobn@rogers.com</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div><div style="font-size:10pt;font-family:arial,helvetica,sans-serif"><div style="font-family:arial,helvetica,sans-serif;font-size:10pt">
Hello,</div><div style="font-family:arial,helvetica,sans-serif;font-size:10pt">I&#39;m trying to learn techniques for showing flyover content, where something pops up while your mouse moves over a component.</div><div style="font-family:arial,helvetica,sans-serif;font-size:10pt">
A common approach seems to be to build a hidden component and then use javascript to make it visible. </div><div style="font-family:arial,helvetica,sans-serif;font-size:10pt">I&#39;ve got that working, using code like this... </div>
<div style="font-family:arial,helvetica,sans-serif;font-size:10pt"><br></div><div><div><font face="arial, helvetica, sans-serif"><span style="white-space:pre-wrap">                </span>onMouseOver: (html jQuery ajax
 script: [:s | </font></div><div><font face="arial, helvetica, sans-serif"><span style="white-space:pre-wrap">                        </span>s &lt;&lt; (html jQuery id: flyoverId) cssAt: &#39;top&#39; put: ((html jQuery id: cellId) positionTop).</font></div>
<div><font face="arial, helvetica, sans-serif"><span style="white-space:pre-wrap">                        </span>s &lt;&lt; (html jQuery id: flyoverId) cssAt: &#39;left&#39; put: ((html jQuery id: cellId) positionLeft).</font></div><div><font face="arial, helvetica, sans-serif"><span style="white-space:pre-wrap">                        </span>s &lt;&lt; (html jQuery id: flyoverId) show]);</font></div>
<div><font face="arial, helvetica, sans-serif"><span style="white-space:pre-wrap">                </span>onMouseOut: (html jQuery ajax script: [:s | s &lt;&lt; (html jQuery id: flyoverId) hide]);</font></div><div style="font-family:arial,helvetica,sans-serif;font-size:10pt">
<br></div><div style="font-family:arial,helvetica,sans-serif;font-size:10pt"><span style="font-size:10pt">...where &#39;cellId&#39; is the id of a table cell. But this example shows the popup content over the table cell.</span><br>
</div><div style="font-family:arial,helvetica,sans-serif;font-size:10pt"><span style="font-size:10pt">What I need next is to adjust the &#39;left&#39; position by adding </span><span> &#39;</span><span>(html jQuery id: cellId) width&#39; to the </span><br>
</div><div style="font-family:arial,helvetica,sans-serif;font-size:10pt"><span style="font-size:13px">positionLeft value. </span>Easy enough to do with javascript, but how is this done with Seaside jQuery?</div><div style="font-family:arial,helvetica,sans-serif;font-size:10pt">
<span style="font-size:13px"><br></span></div><div style="font-family:arial,helvetica,sans-serif;font-size:10pt">Also, are there other examples of how to
 show flyover content using Seaside jQuery?<br></div><div style="font-family:arial,helvetica,sans-serif;font-size:10pt">And what about popup content that you can interact with? i.e. content that says rendered as you move your mouse over it.</div>
<div style="font-family:arial,helvetica,sans-serif;font-size:10pt"><span style="font-size:13px"><br></span></div><div style="font-family:arial,helvetica,sans-serif;font-size:10pt"><span style="font-size:13px">Thanks for any help,</span></div>
<div style="font-family:arial,helvetica,sans-serif;font-size:10pt"><span style="font-size:13px">Bob</span></div></div></div></div><br>_______________________________________________<br>
seaside mailing list<br>
<a href="mailto:seaside@lists.squeakfoundation.org">seaside@lists.squeakfoundation.org</a><br>
<a href="http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside" target="_blank">http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside</a><br>
<br></blockquote></div><br></div>