Re: Super Dev Mode : Cannot get module to compile with -workDir

2012-06-14 Thread Danny Kirchmeier
On Tuesday, June 12, 2012 1:43:09 PM UTC-5, Brian Slesinsky wrote: When it hangs, could you try running jstack on the process to get a thread dump? Well, now it appears to be working. I haven't updated the code with a new version, so I don't know what happened. If it happens again, I'll

Super Dev Mode : Cannot get module to compile with -workDir

2012-06-11 Thread Danny Kirchmeier
I'm trying out the new Super Dev Mode from the trunk. While I can get the codeserver to compile the module normally, it hangs when I specify -workDir. Am I doing something wrong, or do I need to file a bug report? Ant Target: target name=codeserver depends=javac description=Run development

Re: Using DockPLayoutPanel - can I get an autoexpanding south widget?

2011-11-09 Thread Danny Kirchmeier
Now, my initial instinct is to somehow try and determine whether or not the FlowPanel needs to vertically resize (how do I determine this? Can it be determined?) and then use DockLayoutPanel.setWidgetSize to perform the resizing manually. Sounds like a good approach. On the bottom

Re: Basic JavaScript onClick not getting called from inside GWT richTextarea

2011-11-09 Thread Danny Kirchmeier
No idea. Seems to me that you should be using an Anchor and ClickHandlers instead of that native method, but I may not understand exactly why you need that. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the

Re: MenuBar - how can I cause it to wrap?

2011-11-09 Thread Danny Kirchmeier
The MenuBar uses a table, with each item being a table cell. AFAIK, you're not going to have any luck getting that to wrap. You should be able to check to see if any of the items are flowing out of the window and have those move themselves into a More menu item. -- You received this message

Re: How to determine *at runtime* which permutation is used?

2011-11-09 Thread Danny Kirchmeier
You can use GWT.getPermutationStrongName()http://google-web-toolkit.googlecode.com/svn/javadoc/latest/com/google/gwt/core/client/GWT.html#getPermutationStrongName() You can choose to write that to the screen like so RootPanel.get().add(new Label(GWT.getPermutationStrongName())); -- You

Re: CellList grid

2011-11-07 Thread Danny Kirchmeier
It's a bit of a hack, but since the cell list is just a list of Divs, you can use the CSS3 columns (but watch out, IE9 doesn't support this, and only the most recent version of opera does) public void setColumns(int columns) { if(columns 1) columns = 1; Style style =

Re: Basic JavaScript onClick not getting called from inside GWT richTextarea

2011-11-07 Thread Danny Kirchmeier
Did you ever call exportMyFunction2? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/t3GfHd8ZwxsJ. To post to this group, send email to

Re: Ok, CssResources and ClientBundle, what am I doing wrong?

2011-11-04 Thread Danny Kirchmeier
Does your Style1.css now say this: @external .gwt-Button; .gwt-Button{ background: black; color: cyan; } Don't forget the semicolon at the end of the @external line. I forgot it the first few times I used it. It causes no error to be thrown and next style to be completely ignored. It worked

Re: Possible to get HTML from a widget?

2011-11-03 Thread Danny Kirchmeier
Maybe you'll want to be using the GWT 2.4 docs instead of the GWT 1.4 docs you seem to have. http://google-web-toolkit.googlecode.com/svn/javadoc/2.4/index.html Anyway, from the Widget you can call