Hi all,
I've this kind of problem, may be you can help me.
I've a html code that i launch via Ajax.
When the code is loaded I create on a <div id="target" > inside a <form> a
StickyWin.PointyTip.
I attach it on the div via relatedTo: 'target'
----
The pb I encouter is that my pointytip is well created but is not well
positioned.
I spend a lot of time to understand that maybe it is due to the Ajax loading
because the pointyTip is located near the <div> which encompass the html
fragment and not located near the 'target'.
---
The code looks like this :
fragment html i load :
<div id="point1">
<p> some Texte blablabla</p>
<form>
<div id="target">
<label>So nice label</label>
<input type='text' ......./>
</div>
....others input...
</div>
Then the StickyWin is located near "point1" and not near "target".
Do you have a workaround for this situation ?
Is there a specific option to set when creating the stickyWin.PointyTips ?
Thanks a lot.