Problem with dynamic table

2014-12-02 Thread Carsten Spieker
(unknown) circumstances. We hope that the GWT tean did some explicit fixes for IE11 support which solved the problem, though not completely. We would appreciate any helpful idea or advice. Thanks in advance! Greetz Carsten -- You received this message because you are subscribed

Problem with dynamic tables

2014-12-02 Thread Carsten Spieker
fixes for IE11 support which solved the problem, though not completely. We would be appreciate any helpful idea or advice. Thanks in advance! Greetz Carsten -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this group

Re: Will ClientBundle work when I allow people to embed my app in their site?

2012-06-27 Thread Carsten
I have no experience in is if this app will work if it uses ClientBundle to load additional resources from app code. One would think ClientBundle JavaDocs would have a big warning that it fails if used this way, right? On Tuesday, June 26, 2012 5:57:11 PM UTC+2, Joseph Lust wrote: Carsten

Re: Will ClientBundle work when I allow people to embed my app in their site?

2012-06-27 Thread Carsten
Thanks. Very helpful. From what I am reading I guess the ExternalTextResource cannot switch to JSONP at runtime? I can test at runtime if the HTML host page domain is different from the Module domain and activate it at runtime. Maybe I will use ExternalTextResource then. I need to check first

Will ClientBundle work when I allow people to embed my app in their site?

2012-06-26 Thread Carsten
Hi, I plan to use ClientBundle to load resources into my GWT app. Once the app is finished I plan to allow people to embed the app (reference the js-file located on my server that will load everything else). I wondered if the resource loading will automagically keep working in spite of the

Re: How far does the optimizations of the GWT compiler go..?

2012-06-24 Thread Carsten
I haven't yet -- maybe I will. Strange that this problem is not fixed yet. On Sunday, June 24, 2012 4:20:28 PM UTC+2, Joseph Lust wrote: Carsten, Did you try compiling the SoycDashboard tool as detailed in the docshttp://code.google.com/p/google-web-toolkit/wiki/CodeSplitting? I have

Re: How far does the optimizations of the GWT compiler go..?

2012-06-23 Thread Carsten
. The rest of the links is not working since the following files are missing: CompilerMetrics-1-index.html CompilerMetrics-2-index.html CompilerMetrics-3-index.html CompilerMetrics-4-index.html CompilerMetrics-5-index.html Why aren't they generated? Thanks, Carsten On Thursday, June 21, 2012 11

Re: How far does the optimizations of the GWT compiler go..?

2012-06-23 Thread Carsten
I did. When I compile with -compileReport, at least the first link for Safari works. All other links do not. If I compile with -XsoycDetailed not even the first link is working. It creates all other files from the report though. On Saturday, June 23, 2012 9:18:04 PM UTC+2, Joseph Lust wrote:

Re: How to best get data into a GWT app?

2012-06-22 Thread Carsten
=com.google.gwt.i18n.I18N/ I otherwise do not use if I want to use Dictionary. I am wondering if there is perhaps some other way then Dictionary to easily get a simple JSON-string into GWT without importing another module, writing JSNI or escaping the JSON string? Thanks, Carsten On Friday

Re: How to best get data into a GWT app?

2012-06-22 Thread Carsten
should use JSNI interface for that. Check this out https://developers.google.com/web-toolkit/doc/latest/tutorial/JSON#client On Friday, June 22, 2012 1:34:32 PM UTC+2, Carsten wrote: Thanks. Reading the Dictionary JavaDoc I thought this is the solution. The problem is my JSON data string

How far does the optimizations of the GWT compiler go..?

2012-06-21 Thread Carsten
initVCO(), the field vco, or even the VeryComplexObject class itself? Can I somehow check what the GWT compiler removed and what not? Is there a log which lists removed parts? Thanks, Carsten -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group

Re: How far does the optimizations of the GWT compiler go..?

2012-06-21 Thread Carsten
project. On Thursday, June 21, 2012 4:17:53 PM UTC-4, Carsten wrote: Hi, I was wondering how well the GWT compiler is able to remove unused parts? Can it even remove methods and fields from a class which are never used? Example: VeryComplexObject vco = null; initVCO() { ... }; If initVCO

How to best get data into a GWT app?

2012-06-21 Thread Carsten
the JSON data somehow unescaped in the website...this should be possible in a script TAG, right? How would I get access to that string inside the script tag in GWT? Or is there a better way to embed the JSON string in the website and get it from within the GWT app? Thanks, Carsten -- You received

GWT cross-site request without JSNI..?

2012-06-18 Thread Carsten
Hi, is it possible to do a cross-site request with very little JSNI or none at all? I am a beginner and followed this tutorial: https://developers.google.com/web-toolkit/doc/latest/tutorial/Xsite Is it possible to do the same without ever writing native JS code? Cheers, Carsten -- You

Re: Same Origin Problem despite using xsiframe linker?

2012-06-17 Thread Carsten
, 2012 3:28:58 AM UTC+2, Thomas Broyer wrote: On Saturday, June 16, 2012 10:24:01 PM UTC+2, Carsten wrote: So let me reiterate if I got it. Before xsiframe one had to place the Host Html and the GWT app and all resources used by the GWT app on the same server/domain (a.k.a. origin

Binary files again - how do I get them in GWT?

2012-06-16 Thread Carsten
encoding it may be possible to do that though. I would love to make this app in GWT since I already had a lot of progress. I thought I care about the data-problem at the end but it seems I hit a wall :( Thanks, Carsten -- You received this message because you are subscribed to the Google

Re: Same Origin Problem despite using xsiframe linker?

2012-06-16 Thread Carsten
will ultimately be handled by appengine)? Cheers, Carsten On Saturday, June 16, 2012 5:56:40 PM UTC+2, Thomas Broyer wrote: On Saturday, June 16, 2012 4:39:21 PM UTC+2, Carsten wrote: Hi, I run my GWT app in dev and production mode and try to GET a file from a remote Server. In dev-mode

Re: Read in binary file into byte[] ?

2012-05-23 Thread Carsten
, Jim Douglas jdou...@basis.com wrote: Not in GWT proper, and not reliably in all browsers.  Start your reading here: http://www.google.com/search?q=javascript+file+api On May 22, 12:42 pm, Carsten carsten.schm...@googlemail.com wrote: Hi, is it possible to read in a binary file in my

Re: Read in binary file into byte[] ?

2012-05-23 Thread Carsten
? On Wed, 23 May 2012 08:30:25 -0700 (PDT) Carsten carsten.schm...@googlemail.com wrote: I think I should have been more clear. I don't want to load a file from the users computer. I want to read a file from the directory on the server where my GWT app lives. I just want to know the options

Read in binary file into byte[] ?

2012-05-22 Thread Carsten
Hi, is it possible to read in a binary file in my GWT Java-code and convert it into a byte[] ? Thanks! Carsten -- 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

Re: Take snapshot from Canvas and save it to disk or upload to server..?

2012-04-16 Thread Carsten
Sorry...I was too unspecific. I am drawing on a small canvas. Mainly shapes. When I say I want to take a snapshot, I want to be able to get a 'snapshot' at any resolution. In theory I would need to resize everything...canvas, shapes, etc. and redraw everything. Is there a simpler solution? On Apr

Take snapshot from Canvas and save it to disk or upload to server..?

2012-04-15 Thread Carsten
Hi, can I somehow take a snapshot from what I drew on a Canvas and save it to disk (make browser to pop up save image dialog) or upload it to some server? Thanks, Carsten -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post

How does the GWT developer plugin work..?

2012-04-15 Thread Carsten
in real-time into Javascript and the result somehow sent to the browser? Maybe that is the reason it is so much slower then the same app converted to JS? Any idea what is going on? Thanks, Carsten -- You received this message because you are subscribed to the Google Groups Google Web Toolkit

Can I do this with GWT..?

2012-04-03 Thread Carsten
? This are only keywords I found using Google but I don't know how it will look in action and what is possible or not. A few links to web apps that are capable of the features I mentioned above (build on GWT or possible to build with GWT) would be really helpful Thanks, Carsten -- You received this message

Stuck or cancelled ?

2009-03-04 Thread carsten...@googlemail.com
Hello, it seems you're a little bit stuck, or maybe cancelled your project ?! Eventually you really should split your work into two projects, i think nearly everyone is waiting for the php server solution, please share it with the world. Good luck, CRO