GWT Rich Text Editor that produces Markdown

2014-04-10 Thread chrisgo...@gmail.com
Anyone know where I can find a GWT rich text editor that produces markdown? 
   Or a decent converter that would convert HTML produced from a GWT rich 
text editor to markdown?

Thanks,
Chris

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


uibinder specs?

2010-01-21 Thread chrisgo...@gmail.com
I'm really excited about this new feature in GWT (uibinding).  I've
already put together a small app that makes use of it and really see
its advantages.

So far, except for the tutorial listed here:
http://code.google.com/webtoolkit/doc/latest/DevGuideUiBinder.html

I've had to dig for examples in posts and such to learn my way
around.  For example, I had something like this:

ui:UiBinder
xmlns:ui='urn:ui:com.google.gwt.uibinder'
xmlns:g='urn:import:com.google.gwt.user.client.ui'
 ...

 ...



Your refined query will return  hit(s)

Apply Refinement
Cancel



And found out that I can't do something like this in my code... (makes
perfect sense why...)
  @UiHandler("apply")
void handleClick(ClickEvent e) {
Window.alert("Clicked Apply");
}

@UiHandler("cancel")
void handleClick(ClickEvent e) {
Window.alert("Clicked Cancel");
}

I ended up finding an example elsewhere showing it had to be done like
this:

 @UiHandler("apply")
void onApplyHandleClick(ClickEvent e) {
Window.alert("Clicked Apply");
}

@UiHandler("cancel")
void onCancelHandleClick(ClickEvent e) {
Window.alert("Clicked Cancel");
}


Where is this documented? :)  If someone has some useful links to this
stuff, I'd really appreciate it.

Thanks,
Chris

-- 
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-tool...@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.