i have GWT AJAX code but server side is PHP not JAVA.
Now i need to login to server side PHP server.
but i need to connect with SSL.
possiblity of solution i am thinking:
change the http to https://
PHP server side LAMP or XAMPP must have ssl support.
are they correct?
if there are some missing configuration then can anybody inform me?
Has anyone had any luck rolling a custom GWT jar for Google Collections / Guava? I've tried uncommenting the relevant ant tasks and running them, but I just get empty folders in the JAR. Can't seem to get the include rules right :-/
Hi, I'm in the planning stage of a web application and I'm trying to choose between GWT and Cappuccino. I have an idea of which one I think is better, but my partner is sold on the other choice. I was hoping to get some feedback on pros and cons for each from people who have used one or the other or both. Thanks in advance for any insight you might have.
hi,
i am using gwt ext.i have a combo box.i want to set my own filter to display the value.
Any idea please
eg: combobox contain : jon ,
jockey jo,
rock k,
michle ken,
jonty mark,
if i enter k the combo box has to show rock k. condition is it has to check the starting letter word of the list
I've used the ScrollTable widget for GWT and I have a need for a custom cell renderer so I can isolate this code from the rest of the app.
I would like to use generics if possible to get it type safe. This cell renderer will take a long as a value and do some calculation before displaying the result. Anyone having a good example on how to implement such a custom renderer?
So I know that I can communicate between those two using JSON, but I also know that I would have to manually recreate all Django objects in JS.
Do you know of any tool or library that could help me do that? Or maybe even a better way of achieving the same goal?
I only found these two: http://palantar.blogspot.com/2006/06/agad-tutorial-ish-sort-of-post.html http://stackoverflow.com/questions/990319/django-gwt-or-jquery
But then I still would have to manually mirror my objects, which would violate DRY.
Hi,
I'm having a headache figuring how to retrieve the gwt Radio Buttons values in the server side.
Here is my UiBinder form:
<g:FormPanel ui:field="form"><g:RadioButton name="fruit">apple</g:RadioButton><g:RadioButton name="fruit">banana</g:RadioButton> ...
So i though i would have to do this on the servlet:
fruit = req.getParameter("fruit")
But of course this doesn't work, parameter fruit doesn't exist :/
So how should i do?
This question is similar to http://stackoverflow.com/questions/161686/gwt-table-that-supports-sorting-scrolling-and-filtering
However I would prefer open source and I am looking for snappy performance. I want a good way to perform dynamic filtering on rows.
SmartGWT's adaptive filter looks interesting. http://www.smartclient.com/smartgwt/showcase/#grid_adaptive_filter_featured_category
Anyone have any experience with this?
Are there are decent implementations of a vector graphics canvas in GWT? I would like to be draw arbitrary shapes and have them react to user input (mouse in/out/click/etc). There are wrappers for the HTML canvas, but that feature is not supported in older browsers (read: IE).
Does anyone know of any tool that can facilitate/ease porting of an app to both Java Swing and GWT?
I've got a few "screens" that makes complete sense to have both in a desktop app and in a browser and I was wondering if there was some kind of common API that could be targetted that would facilitate creating these two different "views" (see my comment)?
i am using gwt and need history and using
iframe src="javascript:''" id="__gwt_historyFrame" style="width:0;height:0;border:0"/iframe
but can i change __gwt_historyFrame to any other name AAAAA??
is it possible like below
iframe src="javascript:''" id="AAAAA" style="width:0;height:0;border:0"/iframe
I'm using the SliderBar from the GWT Incubator in one of my current projects.
I want to add a handler which fires whenever the value of the slider changes, but I'm not sure which handler I need to add to get this to work, or whether I need to write one of my own.
Thanks
Is there a tool (GUI) for creating / editing the properties-Files (and optional the interfaces) for the GWT internationalization (i18n) with Constants and Messages (no UIBinder i18n)?
Hi.
I need to make suggestion TextBox where user can write some keywords ( to search across file archive with specified keywords ). But keywords can be entered sequentially with some delimiter.
for example: keyword1; keyword2; key...
I want to make it with GWT.
Please, tell me if you know some implementation examples (may be in JavaScript/jQuery) or how to make this.
TIA
I am using GWT and need history and using:
<iframe src="javascript:''" id="__gwt_historyFrame" style="width:0;height:0;border:0"></iframe>
But can I change __gwt_historyFrame to any other name AAAAA? Is it possible like below:
<iframe src="javascript:''" id="AAAAA" style="width:0;height:0;border:0"></iframe>
i get html from designer.
i have 2 radio buttons there.
I like to get data of radio button from GWT.
I need a reference of radioButton.
RadioButton rb = RadioButton.wrap(Dom.getElementById("abc"));
but error.
how can i solve this
I am searching for framework to draw Edges and Nodes. I want to create a visual graph and It should be draggable.
I tried http://code.google.com/p/gwt-diagrams but this project is down.
What is your suggestion?
Hi
I'm using Google web toolkit to develop a small login page. I'm using GWT Designer. My problem is that the rootPanel is not being displayed at the centre but at the top-left corner of the browser. How can I put it at the centre of the page plz?
Thanks and regards,
Krt_Malta
I am using GWT Anchor, but when I pass a url encoded string to the setHref function, the browser displays the link in a decoded format. What's the reason for this? Is there a fix for it?
Anchor a = new Anchor();a.setHref(URL.encode(someString));
hi,
we have this example: http://code.google.com/apis/maps/documentation/v3/basics.html#DetectingUserLocation
which shows how to get the user's position in JSP code.
How to use it using GWT?
thanks
I am looking for a simple Json (de)serializer for Java that might work with GWT. I have googled a bit and found some solutions that either require annotate every member or define useless interfaces. Quite a boring. Why don't we have something really simple like
class MyBean {
...
}
new GoodSerializer().makeString(new MyBean());
new GoodSerializer().makeObject("{ ... }", MyBean.class)
I am trying to debug my GWT application in IE but the page does not load. It works fine in Firefox and Chrome. In IE the browser keeps hanging. If you debug a extremely simple page it works in IE. But complex pages do not open up in IE. Can someone help me out.
Thankyou
Is there GWT api that will tell me which browser version it detected?
I've found a flaw with IE7's regex handling and need to code around some tricky String.matches() expressions.
I'm trying to extend a GWT widget that is built using UIBinder. UIBinder expects the fields in ui.xml to be in the extended widget. The problem that was well described by 'Blessed Geek' on Google Groups. Any tips/tricks?