vote up 0 vote down star

I was looking into GWT. It seems nice, but our software have the must work without JS requirement. Is it possible?

flag

1 Answer

vote up 5 vote down check

No, it isn't. GWT provides a windowing toolkit that is specifically designed to run on the client, not on the server. Degraded (e.g. non-javascript) code would need to deliver complete HTML to the browser, which GWT simply does not do. It compiles your java code to a javascript file that is delivered to the client and builds the UI by DOM-manipulation on the client. Then there's some code to talk back to the server, some implicit, some written by you yourself. This model does not lend itself well to degrading gracefully.

The only way to degrade somewhat gracefully is to provide a second, non-javascript UI or use another toolkit that doesn't render the frontend on the client but delivers HTML. Sorry.

link|flag
Fair enough. So GWT, by its nature will only create js files. – Loki Nov 28 '08 at 20:46
yes - that's it's point. Highly interactive, very impressive. But pure Javascript. – Olaf Nov 28 '08 at 21:46

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.