Argument list too long error

2011-07-10 Thread parth
I am having this error while compiling a project using GWT eclipse
compile button.
I have a very big classpath due to many projects and jar files. But,
since this not an ant target, I do not know how to fix this?
[Same problem as 
http://stackoverflow.com/questions/5549592/ant-javac-task-throws-argument-list-too-long]
Does anyone have any suggestions or workarounds?


Thanks,
Parth

-- 
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.



How to see generated JS code before its sent to linking step.

2011-07-10 Thread Marko Vuksanovic
Hi,

I wanted to see what was getting generated by CompilePerms step and sent to 
linker. For that purpose I executed Precompile and CompilePerms steps 
manually. I got hold of permutation-x.js files. When I opened any of those 
files in text editor the output was not readable. The problem was not code 
obfuscation but weird characters in the file. How can I get those js files 
output in some format with ASCII characters? Or is there some other way I 
can get to JS files that are actually input to Linker?

Marko

-- 
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/-/RnsNTKasTpkJ.
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: How to see generated JS code before its sent to linking step.

2011-07-10 Thread Thomas Broyer
How about using a Linker with @LinkOrder(Order.PRE) and output the 
artifacts' content from there?

-- 
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/-/tmP5xdoC2NsJ.
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: How to see generated JS code before its sent to linking step.

2011-07-10 Thread Marko Vuksanovic
That's one of options I had in mind. I was hoping there is a way to read the
actual content of permutation-x.js files :)

On Jul 10, 2011, at 11:07 AM, Thomas Broyer t.bro...@gmail.com wrote:

How about using a Linker with @LinkOrder(Order.PRE) and output the
artifacts' content from there?

-- 
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/-/tmP5xdoC2NsJ.
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.

-- 
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.



Instructions on how to use gwt 2.4rc ?

2011-07-10 Thread arne
Hey,

I compiled the version in svn tagged as gwt2.4rc. Now there are a
couple of more libraries than I had the last time. Are the any
instructions on which library is needed for what? I tried it with only
the standard libraries (servlet, servlet-deps, user) but I get the
following error when a requestfactory call is made:

java.lang.NoSuchMethodError:
com.google.gwt.core.client.impl.WeakMapping.setWeak(Ljava/lang/
Object;Ljava/lang/String;Ljava/lang/Object;)

I tried declaring the requestfactory-client and requestfactory-server
jars as dependencies, but i doesn't help. I am using maven to manage
my dependencies.
I would go back to 2.4 beta, but I need the dragdrop features that
were introduced later.
Does anybody has an idea what could be wrong? or any hints how i can
dig deeper into this? I spend a lot of time trying to figure this out
but without any success :(
Do I need to provide more information?

Regards,
arne

-- 
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.



dynamically traverse editor form for security?

2011-07-10 Thread Elhanan
hi.. is it possible to use the EditorVisitor to get access to the editor's 
widgets  (textbox,date, etc..) and enable or disable according to security 
values i will set from the server? 

-- 
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/-/hT9A2wDN4eAJ.
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: How do I render celltable data in chunks?

2011-07-10 Thread Tony Rah
Attach a paging control to your cell widget and page say 10 or 20 rows
at a time. You can also adapt paging to the scroll bar so the user
doesnt have to press buttons. When the scroll gets to the end it will
render the next page. There are samples in the gwt showcase to give
you an idea how it all works.
On Jul 9, 9:28 pm, Potate sammyjiang...@gmail.com wrote:
 Hi

 I have 100+ rows to render in a celltable. The actual data is
 downloaded quite fast via RPC call. However, rendering these 100+ rows
 in IE6 is awfully slow. It also causes temporary UI lockups. Is it
 possible to render the table in chunks? maybe like 10 rows at a time
 incrementally? I tried the following but it doesn't seem to work in
 IE6. I still get lockups:

 Scheduler.get().scheduleIncremental(new RepeatingCommand() {
             int cur = 0;

             @Override
             public boolean execute() {
                 int size = data.size();

                 ListOrderEntry batch = data.subList(
                         cur, Math.min(cur+BATCH_SIZE, size));

                 tableDataProvider.getList().addAll( batch );
                 tableDataProvider.flush();

                 cur = cur + BATCH_SIZE;
                 if (cur = size-1) {
                     // force a sort
                     ColumnSortEvent.fire(table,
 table.getColumnSortList());
                     return false;
                 } else {
                     return true;
                 }
             }
         });

 also, I'm forcing a sort to put the sortable headers in the right
 state, even tho data got back from the server is already sorted. is
 there a way to avoid it?

 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.



Re: dynamically traverse editor form for security?

2011-07-10 Thread Thomas Broyer
Yes and no, but in most cases, no.

EditorVisitor gives you access to the Editors, and all base editor widgets 
in GWT implement IsEditor, not Editor. That is, with the EditorVisitor 
you'll get a ValueBoxEditorString, not the TextBox.

-- 
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/-/hAxauU8npZQJ.
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: RequestFactory: Usage of the EntityService / EntityLocator / ServiceLocator pattern

2011-07-10 Thread StefanR


 Is there anywhere a concrete code sample for this pattern? I'm 
 considering to use Dep. Injection too. 


Here's another example for a classic DAO pattern combined with Spring:
http://cleancodematters.wordpress.com/2011/06/04/tutorial-gwt-request-factory-part-i/
 

-- 
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/-/ROtnqPNljuUJ.
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: Ways to reduce GWT compiled code size

2011-07-10 Thread Andrei
I replaced DockLayoutPanel (I had only one) with LayoutPanel (I had a
few of them already). It reduced the size of the compiled code by
2.6kB. There were no other changes in the app.

Andrei

-- 
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: Ways to reduce GWT compiled code size

2011-07-10 Thread Andrei
Another small data point. Adding a single reference to an empty
CellTable immediately increases the compiled size by 30kB. Column
sorting and Dataprovider add another 5kB.

-- 
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: GWT Designer Eclipse Problem

2011-07-10 Thread Marko Kotar
I found there is a problem with new desktop window manager. 
Switching to Ubuntu Classic in graphical login solves the problem.




-- 
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.



How to fire an CloseEvent on a DisclosurePanel?

2011-07-10 Thread Rob Coops
Hi all,

I've been pulling my hair out for a while now but I just cant figure it
out...

The idea is really simple a bunch of DisclosurePanels in a VerticalPanel,
whenever one of the DisclosurePanels opens all others close.

The simple way is just loop over the widgets in the Vertical panel, check if
they match the opening panel, if not call setOpen(false); and hey presto
there can be only one.

But I want the animation with that because without it the result is just not
pretty enough. So I looked for a setOpen(boolean state, boolean animate);
but that does not exist. Then a simple call to the panel telling it to close
and the rest should sort it self out. So I call DisclosurePanel.fireEvent(
... and there is where I get stuck as I cannot figure out how to fire the
CloseEvent. My java knowledge or well lack there of is most likely what is
causing me not to be able to work it but I'm trying to learn.

Anyway I have spend a good few hours with Google and the result is that no
one seems to want to fire the CloseEvent (just catch it on all different
kinds of panels and the browser window it self). I spend some time looking
at the test cases which should and do test the opening and closing in an
automated way but the code that is being used there but for a test case the
animation is not really possible to test so here the only thing that is done
is calling setOpen(true/false)) which is not what I am looking for.

If anyone out there knows how to do something as simple as programatically
click on the DisclosurePanel header then I hope they will share this
knowledge with me :-)

Regards,

Rob

-- 
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.



Updated to GWT 2.3 - Still no Canvas support in IE9

2011-07-10 Thread dennis.heidelbach
I just updated my GWT from 2.2 to 2.3 and was looking forward to test
my application also with IE9.

But still the Canvas.createIfSupported-Method returns null, because
the detector.isSupportedCompileTime()-Call returns false.

The gwtcanvasdemo is working without any problems in my IE9, so what
could I have forgotten in my application?

I'm using Eclipse 3.6 and changed the Library-Entry in the Java Build
Path from GWT SDK 2.2 to GWT SDK 2.3. Do I have to change
something else?

Thanks for any help!
Dennis

-- 
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.



unable to integrate linkedin in particular location in gwt app

2011-07-10 Thread phani varma gokaraju
iam working with the example



http://developer.linkedinlabs.com/tutorials/jsapi_login_reg/



for authentication its working fine...when i added the script in basic
html



but i want it in a specific page and i added the script tag
in   ...ui.xml


script type=IN/Loginscript

and the remaining code in basic html ..iam not getting the
linkedIn button...please help ...


thanks in advance...

-- 
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.



GWT plugin on RAD 7.5

2011-07-10 Thread Itamar L
Hello,

I am working on IDE IBM RAD 7.5

I tried to install GWT plugin to the RAD (through software updste)
from GWT web, but it failed.

How can I install the GWT on the RAD 7.5?

-- 
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.



Creating vibration with GWT on iPhone

2011-07-10 Thread Ido
Dear all,

It seems that phoneGap is the best way to create vibration on iPhones,
but it requires using a Mac.
Before buying an Android, something that I tried to avoid, I would
like to ask you a way to create vibration on iPhone using GWT without
a Mac.

Thanks and best,
Ido

-- 
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.



Load Testing GoogleWebToolKit

2011-07-10 Thread Alex
Hey,

I'm working with a research group with University of Southern
California and we're building a web passed game using GWT.  Now we
would like to test to make sure it can handle multiple clients and
that concurrency on the server is handled properly.  Does anyone have
any recommendations on load testing tools that we could use?  Also
would it be possible to start multiple client threads that send
requests to a GWT server and use Junit to verify that information is
being returned properly?

Thanks,
-Alex

-- 
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.



RequestFactory and Value Proxy for Objectify Key problem

2011-07-10 Thread Phil C
I am trying to convert our application to use RequestFactory (GWT 2.3
using all com.google.web.bindery.requestfactory.shared references).  I
am running into issues when trying to use an entity proxy for the
objectify key class.

@ProxyFor(Key.class)
public interface KeyProxyT extends EntityProxy extends ValueProxy{
long getId();
String getKindClassName();
String getName();
KeyProxy? getParent();
V extends EntityProxy KeyProxyV getRoot();
}

the entity class then has a reference to the key like this

public interface BarProxy{
  KeyBarProxy getKey();
}

we end up with an error like

java.lang.AssertionError: Incorrect size: 2
at com.google.web.bindery.autobean.shared.impl.AutoBeanCodexImpl
$CoderCreator.getCoder(AutoBeanCodexImpl.java:124)
at com.google.web.bindery.autobean.shared.impl.AutoBeanCodexImpl
$PropertyCoderCreator.maybeCreateCoder(AutoBeanCodexImpl.java:354)
at com.google.web.bindery.autobean.shared.impl.AutoBeanCodexImpl
$PropertyCoderCreator.visitReferenceProperty(AutoBeanCodexImpl.java:
341)
at

when looking at it in the deubugger, there appear to be 2 coders.  The
first is for BarProxy, and the second is for the Key.

Any help appreciated.

-- 
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.



Graph Visualization

2011-07-10 Thread Kyle Anderson
I have a list of nodes and edges, and I would like to visualize this
as a graph.  The graph should be editable.  The user can add/delete/
move nodes and edges.  In some cases, there will be geolocation
information available (meaning that the layout is already defined).
In other cases, this information is not available, and the layout
should be generated and placed on a blank background.

Is GWT suitable for this?  I know that GWT works nicely with Google
Maps, which works if geolocation information is available.  I have
also seen the jGraph library, which provides a nice way to generate
and modify graphs.  However, I don't believe this can be imported into
GWT.

Thanks in advance.
Kyle

-- 
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.



how to connect to a db using GWT and phpmyadming

2011-07-10 Thread Ruben Estevez
Hi Im a beginner, and I have a website but now I'm trying GWT but the
website I have use cpanel and phpmyadmin and mysql how I do to connect
to the database? and how I do server requests if is php?

-- 
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.



Eclipse crashes when starting GWT Designer View

2011-07-10 Thread Mark
Hello,

I did install Eclipse Indigo (3.7) and the Google Plugin for Eclipse
3.7. Everytime I try to start a design view of a *.ui.xml file Eclipse
crashes.
Is there anotherway to get more debug information? Have you any hints
or solutions for this problem?

Thanks, Mark

Eclipse output:

/opt/eclipse/eclipse -debug
Start VM: /usr/bin/java
-Dosgi.requiredJavaVersion=1.5
-XX:MaxPermSize=256m
-Xms40m
-Xmx384m
-jar /opt/eclipse//plugins/
org.eclipse.equinox.launcher_1.2.0.v20110502.jar
-os linux
-ws gtk
-arch x86_64
-showsplash
-launcher /opt/eclipse/eclipse
-name Eclipse
--launcher.library /opt/eclipse//plugins/
org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.100.v20110505/
eclipse_1407.so
-startup /opt/eclipse//plugins/
org.eclipse.equinox.launcher_1.2.0.v20110502.jar
--launcher.overrideVmargs
-exitdata a08012
-product org.eclipse.epp.package.java.product
-debug
-vm /usr/bin/java
-vmargs
-Dosgi.requiredJavaVersion=1.5
-XX:MaxPermSize=256m
-Xms40m
-Xmx384m
-jar /opt/eclipse//plugins/
org.eclipse.equinox.launcher_1.2.0.v20110502.jar
Install location:
file:/opt/eclipse/
Configuration file:
file:/opt/eclipse/configuration/config.ini loaded
Configuration location:
file:/opt/eclipse/configuration/
Framework located:
file:/opt/eclipse/plugins/org.eclipse.osgi_3.7.0.v20110613.jar
Framework classpath:
file:/opt/eclipse/plugins/org.eclipse.osgi_3.7.0.v20110613.jar
Splash location:
/opt/eclipse/plugins/org.eclipse.platform_3.7.0.v201106131736/
splash.bmp
Debug options:
file:/home/username_removed/Downloads/.options not found
Time to load bundles: 7
Starting application: 3237
Application Started: 8233
GWT http-server started at 127.0.0.1:0
Inconsistency detected by ld.so: dl-tls.c: 79: _dl_next_tls_modid:
Assertion `result = _rtld_local._dl_tls_max_dtv_idx + 1' failed!

-- 
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.



Request Factory More Secure ?

2011-07-10 Thread Vincent François
Is it correct to think that Request Factory is more secure that GWT RPC ?

The client does not handle a entity (objectify entity) but handles a proxy. 
Is it true ? Am I right ?

-- Vincent


-- 
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/-/mWVdzvWclJQJ.
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: combine GWT application from several modules coming from JARs or OSGI bundles

2011-07-10 Thread vitaly.paku...@googlemail.com
I see a solution for this case. Main problem of the GWT today is
single compiled js-cache. This cache contains common block (vars +
functions) used by _each_ compiled GWT addon and  addons specific
blocks.

Javascript allows to include specific parts of application due include
part_x.js mechanism.
If GWT compiler will build js-cache with next logic:

js-root
 | vars (global)
 | funcs (global)
 |
 |--- include addon1.js
 |  | vars (addon1)
 |  | funcs (addon1)
 |  |
 |--- include addon2.js
 |  | vars (addon2)
 |  | funcs (addon2)
 |

Then it will be possible to include/exclude specific addons on fly (by
dynamic includes substitution). Of course that's will work only before
load to client browser. May be will be necessary in some cases to add
small code for control of onLoad function.

-- 
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.



What is the best way to get the HTML / DOM within a GWT Frame?

2011-07-10 Thread Ybrek
What is the best way to get the HTML / DOM within a GWT Frame? The
goal is to manipulate the contents of the Frame?

-- 
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: dynamically traverse editor form for security?

2011-07-10 Thread Elhanan Maayan
is there another way to reflective recursive search in a form?

it's just occured to me, that won't solve my problem with buttons and things
that are not editors.

it would the developer would have would have somehow annotated the element
of the widget with something and i would have to create a visitor class for
the form (assuming the form is a complex panel)

On Sun, Jul 10, 2011 at 7:46 PM, Thomas Broyer t.bro...@gmail.com wrote:

 Yes and no, but in most cases, no.

 EditorVisitor gives you access to the Editors, and all base editor
 widgets in GWT implement IsEditor, not Editor. That is, with the
 EditorVisitor you'll get a ValueBoxEditorString, not the TextBox.

 --
 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/-/hAxauU8npZQJ.

 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.


-- 
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: Eclipse crashes when starting GWT Designer View

2011-07-10 Thread Jeff Chimene
Perhaps you're on a Linux distro? It looks vaguely like some version
mismatch. Try installing Eclipse from your distro's repository (rename
the /opt/eclipse to /opt/eclipse.sav first). If Eclipse loads, that
means there might have been some dependency upgrade that's not handled
by the manual install into /opt. If Eclipse loads, and it isn't at 3.7,
then rename the /opt/eclipse.sav back to /opt/eclipse and explicitly
start Eclipse from that path.
On 07/09/2011 01:02 PM, Mark wrote:
 Hello,
 
 I did install Eclipse Indigo (3.7) and the Google Plugin for Eclipse
 3.7. Everytime I try to start a design view of a *.ui.xml file Eclipse
 crashes.
 Is there anotherway to get more debug information? Have you any hints
 or solutions for this problem?
 
 Thanks, Mark
 
 Eclipse output:
 
 /opt/eclipse/eclipse -debug
 Start VM: /usr/bin/java
 -Dosgi.requiredJavaVersion=1.5
 -XX:MaxPermSize=256m
 -Xms40m
 -Xmx384m
 -jar /opt/eclipse//plugins/
 org.eclipse.equinox.launcher_1.2.0.v20110502.jar
 -os linux
 -ws gtk
 -arch x86_64
 -showsplash
 -launcher /opt/eclipse/eclipse
 -name Eclipse
 --launcher.library /opt/eclipse//plugins/
 org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.100.v20110505/
 eclipse_1407.so
 -startup /opt/eclipse//plugins/
 org.eclipse.equinox.launcher_1.2.0.v20110502.jar
 --launcher.overrideVmargs
 -exitdata a08012
 -product org.eclipse.epp.package.java.product
 -debug
 -vm /usr/bin/java
 -vmargs
 -Dosgi.requiredJavaVersion=1.5
 -XX:MaxPermSize=256m
 -Xms40m
 -Xmx384m
 -jar /opt/eclipse//plugins/
 org.eclipse.equinox.launcher_1.2.0.v20110502.jar
 Install location:
 file:/opt/eclipse/
 Configuration file:
 file:/opt/eclipse/configuration/config.ini loaded
 Configuration location:
 file:/opt/eclipse/configuration/
 Framework located:
 file:/opt/eclipse/plugins/org.eclipse.osgi_3.7.0.v20110613.jar
 Framework classpath:
 file:/opt/eclipse/plugins/org.eclipse.osgi_3.7.0.v20110613.jar
 Splash location:
 /opt/eclipse/plugins/org.eclipse.platform_3.7.0.v201106131736/
 splash.bmp
 Debug options:
 file:/home/username_removed/Downloads/.options not found
 Time to load bundles: 7
 Starting application: 3237
 Application Started: 8233
 GWT http-server started at 127.0.0.1:0
 Inconsistency detected by ld.so: dl-tls.c: 79: _dl_next_tls_modid:
 Assertion `result = _rtld_local._dl_tls_max_dtv_idx + 1' failed!
 

-- 
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: Eclipse crashes when starting GWT Designer View

2011-07-10 Thread Hilco Wijbenga
On 9 July 2011 13:02, Mark rausch.pi...@gmail.com wrote:
 Hello,

 I did install Eclipse Indigo (3.7) and the Google Plugin for Eclipse
 3.7. Everytime I try to start a design view of a *.ui.xml file Eclipse
 crashes.
 Is there anotherway to get more debug information? Have you any hints
 or solutions for this problem?

 Thanks, Mark

 Eclipse output:

snip/
 Inconsistency detected by ld.so: dl-tls.c: 79: _dl_next_tls_modid:
 Assertion `result = _rtld_local._dl_tls_max_dtv_idx + 1' failed!

That's your problem. If you search the web for this error, you'll see
you're not the first to encounter this issue. Good luck! :-)

-- 
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: Ways to reduce GWT compiled code size

2011-07-10 Thread Olostan
Hi

But what about code splitting? May be it can help you to reduce at least 
startup time of an app? 

ofcourse, you've posted very srtange facts. I am very surpirised becaurse i've 
thought that GWT do optimization steps as long as it can optimize - normally 
compiling takes quite long time. 

It would be really gteat if some GWT expers will comment if this is normal 
behavior of GWT...

-- 
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/-/fSyrg92v3XkJ.
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.



GWT Developer Job Openings

2011-07-10 Thread Olostan
Hi Jeff,

Normally here are discussed technical aspects of GWT development and 
discussions about job offers are very rare...

I can share my expieience from opposite direction - about yeaR before I was 
searching for any web site with job offers for GWT developer without big 
succes: many sites had even filter GWT but enablint it gave 0 results :)

-- 
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/-/IEyAYND7uDwJ.
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: GWT Developer Job Openings

2011-07-10 Thread Jeff
I guess I should have phrased my question a little differently. As a fellow 
member of the GWT developer community and someone who is actively looking 
for skilled GWT developers, would this community find a benefit in a common 
thread where GWT opportunities can be posted by developers for developers?

If the answer is yes, I'm actively looking for at least two people who can 
legally work within the United States and are willing to relocate or travel 
weekly to client sites (currently west coast) to take on lead design and dev 
roles utilizing GWT and web services.

-- 
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/-/0yORR_q6e8kJ.
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: GWT Developer Job Openings

2011-07-10 Thread Jeff Chimene
On 07/10/2011 05:11 PM, Jeff wrote:
 I guess I should have phrased my question a little differently. As a
 fellow member of the GWT developer community and someone who is actively
 looking for skilled GWT developers, would this community find a benefit
 in a common thread where GWT opportunities can be posted by developers
 for developers?
 
 If the answer is yes, I'm actively looking for at least two people who
 can legally work within the United States and are willing to relocate or
 travel weekly to client sites (currently west coast) to take on lead
 design and dev roles utilizing GWT and web services.

It looks like
http://groups.google.com/group/Google-Web-Toolkit-Employment
never found a moderator.

If it did have a moderator, that would be where I would post such a
message. No doubt there will be those who wish to wield a banhammer on
you for having the temerity to post this topic, but I don't see any
reasonable alternative right now.

Cheers,
jec

-- 
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: GWT Developer Job Openings

2011-07-10 Thread Jeff
Since it was a question that I was posting and clearly had the indent of 
finding talent that contributed to this forum (which has aided me personally 
in finding solutions to problems) and trying to pay it forward by to those 
who may not be employed there was clearly no temerity. 

However, your negative response was quite unnecessary when the link alone 
would do. Thanks for that by the way.

/end_discussion

-- 
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/-/uqBQ2aK0INwJ.
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: GWT Developer Job Openings

2011-07-10 Thread Jeffrey Chimene
On 7/10/2011 5:35 PM, Jeff wrote:
 Since it was a question that I was posting and clearly had the indent
 of finding talent that contributed to this forum (which has aided me
 personally in finding solutions to problems) and trying to pay it
 forward by to those who may not be employed there was clearly no
 temerity.

 However, your negative response was quite unnecessary when the link
 alone would do. Thanks for that by the way.

 /end_discussion
My response in no way was to be taken as a slur. I'm sorry that you read
it that way.

-- 
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: How do I render celltable data in chunks?

2011-07-10 Thread Potate
Thanks for the solution. Tho I forgot to mentioned that one of the
requirements for the UI is to avoid paging. We would like to show a
long list and let users scroll using the browser's scroll bar. I would
definitely give a try at the showcased examples. Are there any other
workarounds for this?

thanks very much

On Jul 10, 10:59 pm, Tony Rah xsegr...@gmail.com wrote:
 Attach a paging control to your cell widget and page say 10 or 20 rows
 at a time. You can also adapt paging to the scroll bar so the user
 doesnt have to press buttons. When the scroll gets to the end it will
 render the next page. There are samples in the gwt showcase to give
 you an idea how it all works.
 On Jul 9, 9:28 pm, Potate sammyjiang...@gmail.com wrote:







  Hi

  I have 100+ rows to render in a celltable. The actual data is
  downloaded quite fast via RPC call. However, rendering these 100+ rows
  in IE6 is awfully slow. It also causes temporary UI lockups. Is it
  possible to render the table in chunks? maybe like 10 rows at a time
  incrementally? I tried the following but it doesn't seem to work in
  IE6. I still get lockups:

  Scheduler.get().scheduleIncremental(new RepeatingCommand() {
              int cur = 0;

              @Override
              public boolean execute() {
                  int size = data.size();

                  ListOrderEntry batch = data.subList(
                          cur, Math.min(cur+BATCH_SIZE, size));

                  tableDataProvider.getList().addAll( batch );
                  tableDataProvider.flush();

                  cur = cur + BATCH_SIZE;
                  if (cur = size-1) {
                      // force a sort
                      ColumnSortEvent.fire(table,
  table.getColumnSortList());
                      return false;
                  } else {
                      return true;
                  }
              }
          });

  also, I'm forcing a sort to put the sortable headers in the right
  state, even tho data got back from the server is already sorted. is
  there a way to avoid it?

  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.



GWT Project code/development management

2011-07-10 Thread Gautam
Hi,
 I'm kicking off an elaborate GWT project with multiple devs currntly
working on parts/components of the project. Most components are independent,
which means the devs would code/test and deploy each component separately.
I'm working on the portal project that ties all these together, so i'd need
all their code at their current state and code/test and deploy altogether.
I'v seen some documentation on gwt maven integration and some sample
projects that are put up on the wiki. I'd like to find out the experience
folks have had with gwt+maven and any guidance in this direction.

thanks,
-Gautam.

-- 
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: RequestFactory and Value Proxy for Objectify Key problem

2011-07-10 Thread Kevin Jordan
Well, that should be KeyProxy, not Key there.  I'm also not sure if
you're going to be able to do the T extends EntityProxy generics since
I'm trying to convert my application to RequestFactory too and seem to
be having problems doing that.

On Jul 7, 6:58 pm, Phil C philipcrave...@gmail.com wrote:
 I am trying to convert our application to use RequestFactory (GWT 2.3
 using all com.google.web.bindery.requestfactory.shared references).  I
 am running into issues when trying to use an entity proxy for the
 objectify key class.

 @ProxyFor(Key.class)
 public interface KeyProxyT extends EntityProxy extends ValueProxy{
         long getId();
         String getKindClassName();
         String getName();
         KeyProxy? getParent();
         V extends EntityProxy KeyProxyV getRoot();

 }

 the entity class then has a reference to the key like this

 public interface BarProxy{
   KeyBarProxy getKey();

 }

 we end up with an error like

 java.lang.AssertionError: Incorrect size: 2
     at com.google.web.bindery.autobean.shared.impl.AutoBeanCodexImpl
 $CoderCreator.getCoder(AutoBeanCodexImpl.java:124)
     at com.google.web.bindery.autobean.shared.impl.AutoBeanCodexImpl
 $PropertyCoderCreator.maybeCreateCoder(AutoBeanCodexImpl.java:354)
     at com.google.web.bindery.autobean.shared.impl.AutoBeanCodexImpl
 $PropertyCoderCreator.visitReferenceProperty(AutoBeanCodexImpl.java:
 341)
     at

 when looking at it in the deubugger, there appear to be 2 coders.  The
 first is for BarProxy, and the second is for the Key.

 Any help appreciated.

-- 
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: How do I render celltable data in chunks?

2011-07-10 Thread Juan Pablo Gardella
See this 
threadhttp://groups.google.com/group/google-web-toolkit/browse_thread/thread/f539d58327a351d3?pli=1.
Perhaps help you

2011/7/10 Potate sammyjiang...@gmail.com

 Thanks for the solution. Tho I forgot to mentioned that one of the
 requirements for the UI is to avoid paging. We would like to show a
 long list and let users scroll using the browser's scroll bar. I would
 definitely give a try at the showcased examples. Are there any other
 workarounds for this?

 thanks very much

 On Jul 10, 10:59 pm, Tony Rah xsegr...@gmail.com wrote:
  Attach a paging control to your cell widget and page say 10 or 20 rows
  at a time. You can also adapt paging to the scroll bar so the user
  doesnt have to press buttons. When the scroll gets to the end it will
  render the next page. There are samples in the gwt showcase to give
  you an idea how it all works.
  On Jul 9, 9:28 pm, Potate sammyjiang...@gmail.com wrote:
 
 
 
 
 
 
 
   Hi
 
   I have 100+ rows to render in a celltable. The actual data is
   downloaded quite fast via RPC call. However, rendering these 100+ rows
   in IE6 is awfully slow. It also causes temporary UI lockups. Is it
   possible to render the table in chunks? maybe like 10 rows at a time
   incrementally? I tried the following but it doesn't seem to work in
   IE6. I still get lockups:
 
   Scheduler.get().scheduleIncremental(new RepeatingCommand() {
   int cur = 0;
 
   @Override
   public boolean execute() {
   int size = data.size();
 
   ListOrderEntry batch = data.subList(
   cur, Math.min(cur+BATCH_SIZE, size));
 
   tableDataProvider.getList().addAll( batch );
   tableDataProvider.flush();
 
   cur = cur + BATCH_SIZE;
   if (cur = size-1) {
   // force a sort
   ColumnSortEvent.fire(table,
   table.getColumnSortList());
   return false;
   } else {
   return true;
   }
   }
   });
 
   also, I'm forcing a sort to put the sortable headers in the right
   state, even tho data got back from the server is already sorted. is
   there a way to avoid it?
 
   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.



-- 
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: RequestFactory and Value Proxy for Objectify Key problem

2011-07-10 Thread Kevin Jordan
Also, what's the point of the generics on your KeyProxy as T isn't
used to return or set anything in the class.

On Jul 7, 6:58 pm, Phil C philipcrave...@gmail.com wrote:
 I am trying to convert our application to use RequestFactory (GWT 2.3
 using all com.google.web.bindery.requestfactory.shared references).  I
 am running into issues when trying to use an entity proxy for the
 objectify key class.

 @ProxyFor(Key.class)
 public interface KeyProxyT extends EntityProxy extends ValueProxy{
         long getId();
         String getKindClassName();
         String getName();
         KeyProxy? getParent();
         V extends EntityProxy KeyProxyV getRoot();

 }

 the entity class then has a reference to the key like this

 public interface BarProxy{
   KeyBarProxy getKey();

 }

 we end up with an error like

 java.lang.AssertionError: Incorrect size: 2
     at com.google.web.bindery.autobean.shared.impl.AutoBeanCodexImpl
 $CoderCreator.getCoder(AutoBeanCodexImpl.java:124)
     at com.google.web.bindery.autobean.shared.impl.AutoBeanCodexImpl
 $PropertyCoderCreator.maybeCreateCoder(AutoBeanCodexImpl.java:354)
     at com.google.web.bindery.autobean.shared.impl.AutoBeanCodexImpl
 $PropertyCoderCreator.visitReferenceProperty(AutoBeanCodexImpl.java:
 341)
     at

 when looking at it in the deubugger, there appear to be 2 coders.  The
 first is for BarProxy, and the second is for the Key.

 Any help appreciated.

-- 
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: GWT Developer Job Openings

2011-07-10 Thread Hilco Wijbenga
On 10 July 2011 17:35, Jeff jeffrey.burn...@gmail.com wrote:
 However, your negative response was quite unnecessary when the link alone
 would do. Thanks for that by the way.

Clearly he was being sarcastic. He was actually agreeing with your
posting here since there is currently no real alternative.

 /end_discussion

Nice one. Sort of like a double negative, though, don't you think? :-)
That should probably be /discussion. ;-)

-- 
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: GWT Developer Job Openings

2011-07-10 Thread A. Stevko
Without an appropriate alternative, I personally would like to encourage GWT
job openings/availability to be posted here.
Not job spam but GWT jobs.


On Sun, Jul 10, 2011 at 8:32 PM, Hilco Wijbenga hilco.wijbe...@gmail.comwrote:

 On 10 July 2011 17:35, Jeff jeffrey.burn...@gmail.com wrote:
  However, your negative response was quite unnecessary when the link alone
  would do. Thanks for that by the way.

 Clearly he was being sarcastic. He was actually agreeing with your
 posting here since there is currently no real alternative.

  /end_discussion

 Nice one. Sort of like a double negative, though, don't you think? :-)
 That should probably be /discussion. ;-)

 --
 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.




-- 
-- A. Stevko
===
If everything seems under control, you're just not going fast enough. M.
Andretti

-- 
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.



Call on a GWT module from a servlet

2011-07-10 Thread Sethu
Hi,

I am little confused, the subject does not describe correctly what I
need to do. Here's the thing:

I have a GWT application which I need to integrate with a third party
payment gateway. To make this work, I need to make my GWT application
send a few parameters via a form and post it to a URL that the payment
gateway has given me. That's easy to do, I create a FormPanel and
created all the inputs and the hidden fields that are required and I
can submit to the URL.

The problem is the redirect URL. After the payment gateway process
completes, it will redirect the user to my GWT application. I thought
I'll create a servlet to receive the response. I can handle the
response, make updates to my database.

But now how do I transfer the control back to the GWT client module to
show the user what has happened?

I need to say it was successful or not and whether an email was sent
or not extra. Also I need to share a serial ID with them. That's what
they purchase actually.

Could someone tell me if this the right way of doing this? Or should
the redirect URL be handled by the client modules first and then from
there I should route via RPC to a RemoteService? In that case, how do
I send all the other stuff the payment gateway has sent to me in the
request?

Thanks
Sethu

-- 
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.



[gwt-contrib] Re: RFC: Breaking change to CellTable

2011-07-10 Thread karthik reddy
John/GWT Team

As I understand, one of the important assumptions behind cell 
widgets(CellTable, CellTree etc)  is that innerHTML is fundamentally faster 
than DOM manipulation. 

*
We've found that on some browsers, DOM manipulation is getting faster than 
innerHTML (due to the cost of actually building the HTML string).
*
*

*
Could you elaborate a bit more on this statement and also  how it impacts 
the direction future enhancements for cell widgets in general.

-- 
http://groups.google.com/group/Google-Web-Toolkit-Contributors