[gwt-contrib] RichTextToolbar Widget in GWT?

2014-10-29 Thread Mohammed
Hi, Do we have built In RichTextToolbar widget in GWT? -- You received this message because you are subscribed to the Google Groups GWT Contributors group. To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit-contributors+unsubscr

Howto to reliably detect when to style a RichTextArea+RichTextToolbar Composite

2011-03-22 Thread Jeff Chimene
Hi: I have several RichTextArea/RichTextToolbar Composite widgets for which I'd like an active/inactive styling. How to accomplish this in GWT 2.2? Ordinarily, I'd use onBlur events. However, it seems I cannot rely on these events when they occur; which is anytime focus leaves the RichTextArea

How to add target=_blank to hyperlinks created with RichTextToolbar

2010-11-22 Thread HommeDeJava
Greetings folks, I would like to add target=_blank to hyperlinks created with RichTextToolbar implementation (i.e. using the Create Link button) in order to open the link into a new tab / page. The only trick I've seen yet is to implement a workaround using JSNI JavaScript code but I have

[gwt-contrib] [google-web-toolkit] r9026 committed - Rename RichTextToolbar$Strings.properties to RichTextToolBar_Strings.p...

2010-10-11 Thread codesite-noreply
Revision: 9026 Author: con...@google.com Date: Mon Oct 11 10:13:47 2010 Log: Rename RichTextToolbar$Strings.properties to RichTextToolBar_Strings.properties to avoid shell escaping issues. Review at http://gwt-code-reviews.appspot.com/968802 Review by: fabb...@google.com http

[gwt-contrib] Rename RichTextToolbar$Strings.properties to RichTextToolBar_Strings.properties to avoid shell e... (issue968802)

2010-10-08 Thread conroy
Reviewers: fabbott, Description: Rename RichTextToolbar$Strings.properties to RichTextToolBar_Strings.properties to avoid shell escaping issues. Review by: fabb...@google.com Please review this at http://gwt-code-reviews.appspot.com/968802/show Affected files: D samples/showcase/src/com

RichtextToolbar

2010-10-01 Thread bruce
Hello When I would like to use this widget : http://gwt.google.com/samples/Showcase/Showcase.html#!CwRichText I am using eclipse 3.5 with 2.0.4 gwt plugin. When I try the source of the page eclipse told me it can find the import for RichTextToolbar. How can I have this toolbar that is pretty

Re: RichtextToolbar

2010-10-01 Thread Thomas Broyer
for RichTextToolbar. How can I have this toolbar that is pretty usefull for my project? http://code.google.com/p/google-web-toolkit/issues/detail?id=3042 In other words, it's in the Showcase sample only, you'd have to copy/ paste it in your project. -- You received this message because you

RichTextToolbar

2010-09-08 Thread Bayard Randel
The sample code on http://gwt.google.com/samples/Showcase/Showcase.html#!CwRichText creates an instance of a RichTextToolbar, yet I can't find this in the 2.x GWT API. If this has been deprecated, should the widget showcase be updated to reflect this? By default the RichTextArea does not appear

Re: RichTextToolbar

2010-09-08 Thread Bayard Randel
Oh dear, looks like I've been a bad forums citizen and this has already been addressed (http://groups.google.com/group/google-web- toolkit/browse_thread/thread/75dae68fa54f5610/118979ff271bc71b? lnk=gstq=richtexttoolbar#118979ff271bc71b) I must say though that this seems a wee bit misleading

Re: RichTextToolbar in Uibinder

2010-06-04 Thread Tristan
Ok, taking a look at the RichTextArea in showcase http://gwt.google.com/samples/Showcase/Showcase.html#!CwRichText it looks like in order to get the toolbar you need to use RichTextToolbar and give it the area. // Create the text area and toolbar RichTextArea area = new RichTextArea

Re: RichTextToolbar in Uibinder

2010-06-03 Thread Tristan
wrote: Hello, For my programm i use MVP, and UIbinder for drawing the GUI. i wanted to create an RichTextArea with the toolbar ( richTextToolbar), i spend now 2 hours trying things out, im totaly frustrated, and dont know how to do it... can anyone help me? -- You received this message because

Re: RichTextToolbar in Uibinder

2010-06-03 Thread krz
the GUI. i wanted to create an RichTextArea with the toolbar ( richTextToolbar), i spend now 2 hours trying things out, im totaly frustrated, and dont know how to do it... can anyone help me? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group

RichTextToolbar in Uibinder

2010-06-02 Thread krz
Hello, For my programm i use MVP, and UIbinder for drawing the GUI. i wanted to create an RichTextArea with the toolbar ( richTextToolbar), i spend now 2 hours trying things out, im totaly frustrated, and dont know how to do it... can anyone help me? -- You received this message because you

Sample RichTextToolbar has not been updated to 2.0.x

2010-04-02 Thread Eric
The sample RichTextToolbar provided alongside GWT uses deprecated methods and interfaces. I'm not sure that matters much, but has anyone written an updated version that avoids deprecated code? Perhaps it would be a good example of UiBinder use? Respectfully, Eric Jablow -- You received

reusing richtexttoolbar

2009-10-20 Thread tiyaga
How can i reuse the richtexttoolbar from the other module? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-toolkit@googlegroups.com

Re: RichTextToolbar Question

2009-08-06 Thread Sumit Chandel
Hi Mike, That sounds like a reasonable request, although I'm not sure where it would fall among other priorities in and around getting the RichTextToolbar standard in GWT core. At this point, it would be best to post up your request on Issue #3042 for consideration as the issue gets treated

Re: RichTextToolbar Question

2009-08-05 Thread mdwarne
/Showcase.html#CwRichText They have this amazing Toolbar. I look at the source code and they have:  RichTextArea area = new RichTextArea();  area.ensureDebugId(cwRichText-area);  area.setSize(100%, 14em);  RichTextToolbar toolbar = new RichTextToolbar(area); Problem is, I

Re: RichTextToolbar Question

2009-08-04 Thread Sean Loughran
); RichTextToolbar toolbar = new RichTextToolbar(area); Problem is, I can't find RichTextToolbar in GWT. Eclipse can't include it and I can't find it in the javadocs. Are they using something that isn't in language yet? --~--~-~--~~~---~--~~ You

Re: RichTextToolbar Question

2009-08-03 Thread Sumit Chandel
(); area.ensureDebugId(cwRichText-area); area.setSize(100%, 14em); RichTextToolbar toolbar = new RichTextToolbar(area); Problem is, I can't find RichTextToolbar in GWT. Eclipse can't include it and I can't find it in the javadocs. Are they using something that isn't in language yet

RichTextToolbar Question

2009-07-31 Thread Sean
); RichTextToolbar toolbar = new RichTextToolbar(area); Problem is, I can't find RichTextToolbar in GWT. Eclipse can't include it and I can't find it in the javadocs. Are they using something that isn't in language yet? --~--~-~--~~~---~--~~ You received this message because

Re: RichTextToolbar Question

2009-07-31 Thread Imran
://gwt.google.com/samples/Showcase/Showcase.html#CwRichText They have this amazing Toolbar. I look at the source code and they have: RichTextArea area = new RichTextArea(); area.ensureDebugId(cwRichText-area); area.setSize(100%, 14em); RichTextToolbar toolbar = new RichTextToolbar(area

Re: RichTextToolbar Question

2009-07-31 Thread Sean
Toolbar. I look at the source code and they have:  RichTextArea area = new RichTextArea();  area.ensureDebugId(cwRichText-area);  area.setSize(100%, 14em);  RichTextToolbar toolbar = new RichTextToolbar(area); Problem is, I can't find RichTextToolbar in GWT. Eclipse can't include

How to use RichTextToolbar ?

2008-11-25 Thread [EMAIL PROTECTED]
Hello everybody: In my item , i must use the discreteness.Who can give me a example? Thanks. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Re: How to use RichTextToolbar ?

2008-11-25 Thread satya
You can look at the KitchenSink demo, to follow to include RichTextToolbar. Here is what i did: 1. Included RichTextToolbar java, and the RichTextToolbar $Strings.properties in my client package. 2. Created an icons folder under client, and copied all images required by RichTextToolbar 3

Re: How to use RichTextToolbar ?

2008-11-25 Thread 闫风
Thanks 2008/11/26 satya [EMAIL PROTECTED] You can look at the KitchenSink demo, to follow to include RichTextToolbar. Here is what i did: 1. Included RichTextToolbar java, and the RichTextToolbar $Strings.properties in my client package. 2. Created an icons folder under client

Re: RichTextToolbar

2008-10-19 Thread Jeremy
Hi Nicole, I just had the same problem. Did you make sure to copy the file RichTextToolbar$Strings.properties? The resource key large is defined in an interface that extends Constants, which is part of the i18n GWT package. Constants need an accompanying .properties file to define the keys, e.g

Re: RichTextToolbar

2008-10-16 Thread Nicole Baba
I copy the class RichTextToolbar and images in my project. When I run, some errors like that happened: [ERROR] No resource found for key 'large' com.google.gwt.i18n.rebind.AbstractResource$MissingResourceException: No resource found for key 'large

Re: how to use RichTextToolbar

2008-10-13 Thread Sumit Chandel
Hi samsus, You can find the RichTextToolbar class that is being used in the Showcase sample application in the /samples/Showcase directory in your GWT distribution. Feel free to use the class directly or inspire your own RichTextToolbar class from the implementation in the sample. Hope that helps

how to use RichTextToolbar

2008-10-09 Thread samsus
Hello everyone, in the demo at http://gwt.google.com/samples/Showcase/Showcase.html#CwRichText there is the class RichTextToolbar , however this class doesnt exist, so what can i do? do i have to implement my own RichTextToolbar? and in that case how, is there an example

Re: RichTextToolbar

2008-10-02 Thread Sumit Chandel
as what's in the Showcase sample application, they can pick up the source from there and use it in their own applications. However, I do see your point that it would be much easier and faster to be able to code to a RichTextToolbar right off the bat from the GWT libraries. I think the best place to make

Re: RichTextToolbar

2008-09-30 Thread ivan
+1 even for me On 19 Set, 12:27, Martin Trummer [EMAIL PROTECTED] wrote: +1 from me On Sep 19, 4:52 am, Michael Neale [EMAIL PROTECTED] wrote: Is there any reason why RichTextToolbar is not including as part of GWT but is only as a sample ? (in the Showcase project)? Shouldn't

RichTextToolbar ...great!

2008-09-30 Thread ivan
+1 for me! --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to Google-Web-Toolkit@googlegroups.com To unsubscribe from this group, send email to [EMAIL

Re: RichTextToolbar

2008-09-19 Thread Riyaz Mansoor
totally agree On Sep 19, 7:52 am, Michael Neale [EMAIL PROTECTED] wrote: Is there any reason why RichTextToolbar is not including as part of GWT but is only as a sample ? (in the Showcase project)? Shouldn't this really be part of GWT itself, I mean the text area is not terribly helpful

Re: RichTextToolbar

2008-09-19 Thread Martin Trummer
+1 from me On Sep 19, 4:52 am, Michael Neale [EMAIL PROTECTED] wrote: Is there any reason why RichTextToolbar is not including as part of GWT but is only as a sample ? (in the Showcase project)? Shouldn't this really be part of GWT itself, I mean the text area is not terribly helpful

RichTextToolbar

2008-09-18 Thread Michael Neale
Is there any reason why RichTextToolbar is not including as part of GWT but is only as a sample ? (in the Showcase project)? Shouldn't this really be part of GWT itself, I mean the text area is not terribly helpful without it, and it seems a bit odd to create it each time (it is a bit tedious