Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Have you had any luck yet? I know it's been quite a lot of time, but found this just now. It is a very specific widget, so maybe you won't be able to find exactly what you are looking for. In that case, making one from scratch might prove as a challenge.</p> <p>The first thing you will notice is that a regular gwt <em>TextArea</em> won't do the job of holding the text. You will need something more flexible to dynamically put <em>clickable</em> labels in the text itself.</p> <p>TinyMCE is a platform independent web based Javascript HTML WYSIWYG editor control, released as Open Source.</p> <p><a href="http://en.wikipedia.org/wiki/TinyMCE" rel="nofollow noreferrer">http://en.wikipedia.org/wiki/TinyMCE</a></p> <p>There is also a gwt wrapper available, so you might find that useful:</p> <p><a href="http://code.google.com/p/tinymce-gwt/" rel="nofollow noreferrer">http://code.google.com/p/tinymce-gwt/</a></p> <p>If you check the <em>polishmywriting</em> editor after the spell checking markup is displayed, you will notice it is not a TextArea. The text is a series of paragraphs and the labeled parts are span elements. This are the elements you can easily access with gwt and put some click handlers there to open the popup.</p> <p>And for the popups, it shouldn't be difficult. Use a standard gwt PopupPanel. The popup panel can be displayed in a relative position to other elements displayed on the page:</p> <pre><code>popup.showRelativeTo(otherElement); </code></pre> <p>If you did find something useful in the mean time, feel free to share.</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload