Re: RichTextArea, SafeHtml, and general rich text best practices

2011-04-06 Thread nogridbag
Thank you Patrice! I'll take a look at it. On Apr 5, 8:58 am, Patrice De Saint Steban wrote: > Hello, > > I'm doing the same thing, and I write a new Sanitize class to accept more > tags and parameters. > I use this sanitizer before and after the setHtml() and getHtml() of the > RichTextArea. >

Re: RichTextArea, SafeHtml, and general rich text best practices

2011-04-04 Thread nogridbag
I'm really looking for a reply to this. Surely someone must be using GWT's RichTextArea. On Mar 31, 1:36 pm, nogridbag wrote: > I just converted one of our simple TextArea's into a RichTextArea > (using the RichTextToolbar from the Showcase).  I'm not quite su

RichTextArea, SafeHtml, and general rich text best practices

2011-03-31 Thread nogridbag
I just converted one of our simple TextArea's into a RichTextArea (using the RichTextToolbar from the Showcase). I'm not quite sure I understand the best practices for using RichTextArea with SafeHtml. GWT's RichTextArea.java has the methods: void setHTML(SafeHtml) String getHTML() Let's say I'

Styling CellTable with an external "normal" CSS stylesheet

2011-03-22 Thread nogridbag
I would like to use a normal stylesheet (that resides outside of the source tree) to style a CellTable. I figured out a way to do this. But it's fairly verbose. Is there a better way? My solution: com.blah.client.Blah.java - @ImportedWithPrefix("blah") inter

Strange - RPC policy file randomly inconsistent between gwt compile and devmode

2011-02-23 Thread nogridbag
For a long time in our application, we've had issues running hosted mode. Sometimes hosted mode works, sometimes it doesn't. We've pretty much lived with this for months. For instance: 1) Launch dev mode 2) Copy to Clipboard 3) Paste URL in firefox and hit enter (WORKS!) 4) Copy to Clipboard 5)

Simple CellList example 2.1 M3

2010-09-24 Thread nogridbag
Are there any CellList or CellTable examples using GWT 2.1 M3? Of the few examples I can find, they are all out dated. A simple hello world example will suffice. Looking at old examples and google IO talks, they use ListViewAdapter which appears to be replaced with ListDataProvider. I'm confuse

Re: Feedback on "Large scale app development MVP article"

2010-06-02 Thread nogridbag
it this way too. On Jun 2, 1:08 pm, Tristan wrote: > @nogridbag > > What are your reasons for not having the presenter make RPC requests? > The RPC Service is not a presenter itself. Probably the MVP model > should be called MVPSE (services, event bus) because that's what it >

Re: Feedback on "Large scale app development MVP article"

2010-06-01 Thread nogridbag
ter is the only one which has any > real code, and since it does not depend on the DOM, you can test them using > only JUnit. > > *5. Event Handling* > That part doesn't have to do with MVP, its purely a performance > optimization. For general concepts on the subject, you may want

Feedback on "Large scale app development MVP article"

2010-06-01 Thread nogridbag
Hi, I've been reading the articles on MVP recently, specifically the articles here: http://code.google.com/webtoolkit/articles/mvp-architecture.html http://code.google.com/webtoolkit/articles/mvp-architecture-2.html I've primarily worked with MVC in the past so this is my first exposure to MVP (I

Re: Several CSS resource questions

2010-03-22 Thread nogridbag
ven't looked for a workaround, yet, but all I can think of will > > look like an ugly patch... > > > I've found the bug in the issue tracker > > at:http://code.google.com/p/google-web-toolkit/issues/detail?id=4688&q=C... > > > Please star it if you'v

Re: Several CSS resource questions

2010-03-17 Thread nogridbag
I figured out the answer to question 2. I just had to add @NotStrict annotation. Questions 1 and 3 still perplex me. On Mar 17, 3:45 pm, nogridbag wrote: > 1) @external not working as expected > > The GWT doc states that if you mark a style as @external it won't be > obfuscat

Several CSS resource questions

2010-03-17 Thread nogridbag
1) @external not working as expected The GWT doc states that if you mark a style as @external it won't be obfuscated and it doesn't need an associated method in the CssResource interface. So for instance: @external legacySelectorA, legacySelectorB; .obfuscated .legacySelectorA { } When I do

Re: Need for a great GWT GUI library

2008-12-23 Thread nogridbag
GWT library: what widgets, > what features? I guess a nice look and feel for a start, but what else? > > > 4) There's some really iffy design decisions. > > What do you consider iffy design choices? > > Fred > > On Tue, Dec 23, 2008 at 11:45, nogridbag wrot

Re: Need for a great GWT GUI library

2008-12-22 Thread nogridbag
I've been using GXT (Ext-GWT) for quite some time now. While it certainly looks nice and provides a good amount of functionality lacking in GWT, there are several drawbacks. 1) It is very buggy. Bugs get fixed fairly fast, which is good, but I find myself submitting an abnormally large amount o

Re: NetBeans / hosted mode without gwt4nb

2008-10-13 Thread nogridbag
; > > luck! > > On Mon, Oct 13, 2008 at 6:28 PM, nogridbag <[EMAIL PROTECTED]> wrote: > > > I'd like to use NetBeans for GWT development without the GWT plugin. > > So I simply used applicationCreator and then I created a new "NetBeans > > application from

NetBeans / hosted mode without gwt4nb

2008-10-13 Thread nogridbag
I'd like to use NetBeans for GWT development without the GWT plugin. So I simply used applicationCreator and then I created a new "NetBeans application from existing sources". It works fine if I use the MyProject-comile.cmd and MyProject-shell.cmd scripts that applicationCreator creates. However

Basic login security/session management question

2008-10-01 Thread nogridbag
Hi, I'm fairly new to web apps so I have a few basic questions about handling the user's secure session. I read the article on login security here: http://code.google.com/p/google-web-toolkit-incubator/wiki/LoginSecurityFAQ I understand everything up to the section "How to remember logins". At