[EMAIL PROTECTED] wrote in a blog comment: > I read on openlaszlo that you have implemented the rich text > editor. Could you please help me on that? I can not put the rich > text in my laszlo application. If I can see the code how you did > it, it's great.
For general introduction to rich text, see http://www.openlaszlo.org/lps-latest/docs/guide/richtext.html The rich text editor code lives in $LPS_HOME/lps/components/incubator/ richtext/ You can drop one into your code by including this include line: <include href="incubator/rich-text/richtexteditor.lzx"/> And then this actually creates the rich text editor, with a toolbar. <view width="650" x="50" height="200"> <!-- declare an instance of the richtexteditor class --> <richtexteditor/> </view> I think Gregor or "the doc guy" (John Sundman) wrote a more detailed description of how to use the rich text editor API as a developer -- guys, do you have something? Either browse the code online http://svn.openlaszlo.org/openlaszlo/trunk/lps/components/incubator/ rich-text/ or get a local copy of the source: svn co http://svn.openlaszlo.org/openlaszlo/trunk openlaszlo/trunk benjamin shine software engineer [EMAIL PROTECTED] _______________________________________________ Laszlo-user mailing list [email protected] http://www.openlaszlo.org/mailman/listinfo/laszlo-user
