Class files being generated to source trees when running GWT from within IDE

2013-02-25 Thread Jim Weaver
Hi,

We've seen this with both Eclipse and Intellij, but currently with 
IntelliJ.  When we launch our web application using the IntelliJ GWT plugin 
via a run configuration, the application launches fine, but class files are 
written to the source trees.  I can see the source trees in the classpath 
where the process is launched, and understand GWT development mode needs 
these source files, be we're not sure why class files are being written 
into our source trees.  We have to clean them up manually.

Anyone else seen this?

-- 
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?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Re: Re : When will the gwt maven plugin be updated to match gwt-2.3

2011-06-06 Thread Jim Weaver
Just a note that version of xerces in your project can interfere and
may require pom exclusions to screen out from your gwt modules.  I am
not sure what version is included in the GWT 2.3 dev jar.

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



Re: Celltable column header overlap / bug?

2011-03-23 Thread Jim Weaver
Just an update.

I think the problem I am seeing has more to do with a bug regarding
column header display for a celltable than it does sorting.  If I
remove all sorting logic from my celltable, I can still get
overlapping double image column headers if the data being mapped
into the table does not line up with initial placement of column
headers before any action is taken that populates the table with
data.  If columns from the initial empty table need to shift to make
room for data, the original column text appears underneath the newly
placed column text.

As it stands now, even if I carefully control column widths so no
shifting is needed, I still get a double image when sorting for the
column header of the column being sorted.  Controlling the widths so
no shift is needed does remove the double image problem when data is
mapped into the table, though.

Is there a work-around until a fix is released?  I notice a commit
from October to CellTable that has to do with redrawing headers, that
may be the fix to this bug.

thanks!

On Mar 22, 5:22 pm, Jim Weaver weaver...@gmail.com wrote:
 Hi,

 I am new to GWT, and have an issue with column headers on a celltable
 with GWT 2.2.  Several of the columns are sortable, and when I click
 on the header to sort them, I see a double image on the header text of
 the sortable column, and also the little graphic that indicates the
 sort arrow (down or up arrow) overwrites on top of the previous one,
 so I get an hour-glass looking thing.

 The columns involved do sort properly.  It's not a functional
 problem.  It seems like it is trying to calculate where it should
 render the column headers and the little sort icon after I click on a
 sortable column, and is calculating a little bit off and not quite
 replacing where the previous text was rendered, so you get a fuzzy
 overlapped effect.

 Has anyone else seen this?

 I am using fixed width columns:

                 table.setColumnWidth(col1, 7.00, Unit.PCT);
                 table.setColumnWidth(col2, 7.00, Unit.PCT);
                 table.setColumnWidth(col3, 10.0, Unit.PCT);
                 table.setColumnWidth(col4, 10.0, Unit.PCT);
                 table.setColumnWidth(col5, 10.00, Unit.PCT);
                 table.setColumnWidth(col6, 10.00, Unit.PCT);
                 table.setColumnWidth(col7, 16.00, Unit.PCT);
                 table.setColumnWidth(col8, 10.00, Unit.PCT);
                 table.setColumnWidth(col9, 15.0, Unit.PCT);
                 table.setColumnWidth(col10, 5.0, Unit.PCT);

 The number of columns that are sortable does not seem to affect this
 problem.  Even with just one column sortable I get some weirdness.

 Ah, there is one other oddity that could be related.  When I make
 multiple columns sortable, the little sort graphic only shows up on
 one of them.  The columns that are sortable all sort when I click the
 header, but only one of the columns will show the little arrow graphic
 beside the header text.

 Is there an example project that has multiple sortable columns on a
 cell table?  I'm sure it's something I'm doing wrong.

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



Celltable column header overlap / bug?

2011-03-22 Thread Jim Weaver
Hi,

I am new to GWT, and have an issue with column headers on a celltable
with GWT 2.2.  Several of the columns are sortable, and when I click
on the header to sort them, I see a double image on the header text of
the sortable column, and also the little graphic that indicates the
sort arrow (down or up arrow) overwrites on top of the previous one,
so I get an hour-glass looking thing.

The columns involved do sort properly.  It's not a functional
problem.  It seems like it is trying to calculate where it should
render the column headers and the little sort icon after I click on a
sortable column, and is calculating a little bit off and not quite
replacing where the previous text was rendered, so you get a fuzzy
overlapped effect.

Has anyone else seen this?

I am using fixed width columns:

table.setColumnWidth(col1, 7.00, Unit.PCT);
table.setColumnWidth(col2, 7.00, Unit.PCT);
table.setColumnWidth(col3, 10.0, Unit.PCT);
table.setColumnWidth(col4, 10.0, Unit.PCT);
table.setColumnWidth(col5, 10.00, Unit.PCT);
table.setColumnWidth(col6, 10.00, Unit.PCT);
table.setColumnWidth(col7, 16.00, Unit.PCT);
table.setColumnWidth(col8, 10.00, Unit.PCT);
table.setColumnWidth(col9, 15.0, Unit.PCT);
table.setColumnWidth(col10, 5.0, Unit.PCT);

The number of columns that are sortable does not seem to affect this
problem.  Even with just one column sortable I get some weirdness.

Ah, there is one other oddity that could be related.  When I make
multiple columns sortable, the little sort graphic only shows up on
one of them.  The columns that are sortable all sort when I click the
header, but only one of the columns will show the little arrow graphic
beside the header text.

Is there an example project that has multiple sortable columns on a
cell table?  I'm sure it's something I'm doing wrong.

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



Celltable ui.xml possibilities

2011-03-04 Thread Jim Weaver
Hi,

Very new to GWT.  I'm working on a small application and trying to use
the UIBinder technique (owner java class paried with ui.xml
template).  In the case of a celltable, I'm curious if I can put more
of the layout in the ui.xml than any of the examples show.  All the
examples generally just show a single node for the CellTable, and java
code adds columns to the cell table and maps those columns to model
object properties.  Is this the only option?

With some widgets, like DockLayoutPanel, the javadoc for the widget
shows that some of the operations on the widget (like addNorth in
DLP's case) can be made in the ui.xml as opposed to java code.
CellTable javadoc does not make any reference to what the options are
in the ui.xml.

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 google-web-toolkit@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.