smartgwt.mobile 1.0 pre beta
The Helloworld.java example has incorrect imports and does not work correctly.
The codes uses these imports
import com.google.gwt.event.dom.client.ClickEvent;
import com.google.gwt.event.dom.client.ClickHandler;
And it should use these
import com.smartgwt.mobile.client.widgets.events.ClickEvent;
import com.smartgwt.mobile.client.widgets.events.ClickHandler;
The sample does not work. When you press the buttons, the onClick is not triggered.
I think there is a problem with the backButton, but I have not figured out how it should work.
Also when viewing the showcase with a kindle fire, the <back button is truncated. To see, point your kindle fire browser to the showcase. It works correctly on my android phone's browser.
The Helloworld.java example has incorrect imports and does not work correctly.
The codes uses these imports
import com.google.gwt.event.dom.client.ClickEvent;
import com.google.gwt.event.dom.client.ClickHandler;
And it should use these
import com.smartgwt.mobile.client.widgets.events.ClickEvent;
import com.smartgwt.mobile.client.widgets.events.ClickHandler;
The sample does not work. When you press the buttons, the onClick is not triggered.
I think there is a problem with the backButton, but I have not figured out how it should work.
Also when viewing the showcase with a kindle fire, the <back button is truncated. To see, point your kindle fire browser to the showcase. It works correctly on my android phone's browser.
Comment