Re: Using C / CGI for server-side programming still a reasonable thing to do?

2010-09-25 Thread Артём
On 22 сен, 05:24, Michael wrote: > Given PHP, and all the other alternatives is C / CGI still a > reasonable way to go? C is still faster than PHP and lighter than Java (although you might come up with better system-level languages, like Google Go, Rust, or D). If that is your concern, then "Give

Re: GWT Hosted on another domain

2010-09-25 Thread Артём
Also the Development mode won't work with xs linker turned on (it is a known issue and should be fixed in the next release, AFAIK). Just comment it out temporarily while developing. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post t

Re: Reducing the CPU utilization on the IE browser

2010-09-26 Thread Артём
Are you sure it is related to the RPC calls? You might use a logging module and add tracing output around various parts of your application to see where the time is actually spent. Also, are you talking about the Development mode by chance? I have only seen GWT pause in development mode. In produc

Re: Save clickable images

2010-09-26 Thread Артём
Hi, Daniela! Actually /capturing/ a dynamic web page or its part as an image is not an easy task. On server you can do this with tools like http://www.paulhammond.org/webkit2png/ which actually reuse a library- controlled version of a browser for this. Even then, the captured image will be static

Re: Grid data issue

2010-09-26 Thread Артём
You might try to start a timer, then from this timer take and perform only a portion of updates every time it runs. On 24 сен, 16:22, naveen wrote: > Hi team, > > am using gwt 2.1 version, am trying to fill the data in to the simple > grid. The data is huge, so in IE it is throwing error saying "

Re: Hover Text over HTML

2010-09-26 Thread Артём
Browser usually displays a title when you hover: http://google-web-toolkit.googlecode.com/svn/javadoc/1.6/com/google/gwt/user/client/ui/UIObject.html#setTitle%28java.lang.String%29 On 26 сен, 08:29, GregD wrote: > I'd like to have some hover text appear over some HTML text being > displayed in a

Re: GWT Collections emulation library performance

2010-09-26 Thread Артём
What happens when you use "for (int i = 0; i < list.size(); i++)" to iterate over ArrayList? On 26 сен, 16:03, Nikos Dimitrakopoulos wrote: > I'm not sure whether this is issue is known (and accepted as simply > "nothing can be done") I've Googled an interesting example how GWT can optimize iter

Re: Call the Gwt JavaToJavascript Compiler from ant

2010-10-01 Thread Артём
Hi. Use the webAppCreator to create a sample ant script for you: http://code.google.com/webtoolkit/gettingstarted.html#creating On Sep 30, 5:42 pm, jmsith <3p1...@googlemail.com> wrote: > Hi everyone. > > Can i call the GWT Compiler from an ant buildscript? > I use eclipse 3.5 with the gwt 2.0 pl

Re: gwt in subfolder

2010-10-01 Thread Артём
"myapp.html" is just an html file generated for you during the project creation. You can freely move to other place in the "war" folder. On Oct 1, 11:51 am, Reny wrote: > Hi all, > with GWT I have created an admin interface for an application. > My GWT app responds > athttp://localhost:/myap

Re: webAppCreator returns error

2010-10-01 Thread Артём
Looks like you have an old JDK version. What "java -version" says? On Oct 1, 2:37 am, Blue wrote: > Hi, > > I just downloaded the latest GWT 2.0.4, and extracted to a folder. > When I type in command webAppCreator -out MyApp > com.mycompany.app.MyApp, it returns error: > > Exception in thread "ma

Re: plugin failed to connect to hosted mode server at...

2010-10-01 Thread Артём
Check the Classpath of your Run Configuration. It looks like your source folder is missing from it. (GWT compiler need to find your Java source files somewhere, it uses Classpath for this). On Oct 1, 9:34 am, tashi wrote: > I created a simple project that uses gwt and gwt-maps.jar, which > worked

Re: gwt in subfolder

2010-10-04 Thread Артём
On Oct 4, 7:03 am, Fendy Tjin wrote: > Hi, > > I have the same question, but I'm using Google Hosting which does > automatically when uploading to the host server. In this case, how do I move > it to a subfolder? I'm developing on Google App Engine, and it preserves the file hierarchy. If I creat

Re: One HTML per App?

2010-10-08 Thread Артём
On Oct 6, 8:04 pm, D C wrote: > Is there only one HTML page for a GWT application?  All the example I > saw online contains only one HTML page.  It is very different from > other web approaches. You aren't limited to a single page, you can use progressive enchancement to keep your site search-eng

Re: Developing an AppStore for a GWT / App Engine application?

2010-10-10 Thread Артём
The first problem I see is that the GWT compiler calls System.exit, therefore you can't easily call it's "main" function from your program. And you can't execute it as an external program via a command- line either. I suppose you'll have to use a modified version of GWT to do that. Then there's the