Tagged Questions
0
votes
3answers
197 views
GWT History mechanism
I'm trying to add history capabilities to my GWT app.
To my understanding, the basic history support that GWT has to offer is indeed basic... or should I say very basic.
It doesn't really store any ...
0
votes
0answers
318 views
Open GWT CellTree to a specific node (redux)
This post left me yearning for a functional example.
The "caching" bit and swapping out TreeViewModel implementations (i.e., one originally backed by an AsynchDataProvider with one backed by a ...
2
votes
1answer
169 views
How to find out browser back button click using gwt history
I m using history listener for forward and back browser button.But i m not able to find out history back button click.If any idea plz rply..urgent for me...Thank you..
0
votes
1answer
726 views
GWT multiple Activities/Places with one Token
My Site has on the left a GWT-Tree. In the center is a GWT-TabBar.
Both parts are implemented as Views/Activities/Places. I have two tokenizer: "m" for the tree and "t" for the tabs.
If I visit one ...
0
votes
1answer
436 views
GWT MVP Update the History-Token without changing the Activity
my problem is the following: I have a MVP GWT application with a table in which datasets are shown. There are several hundreds of datasets and so I decided to split the table in pages of 20 results ...
0
votes
2answers
175 views
How to prevent code to execute after firing of history token in gwt?
I am working on gwt2.3 application with gwtp framework.In this application I am have one login (index) page which is bind by the client module.
...
2
votes
1answer
116 views
Why do I need to overide “onPlaceRequest” in every Presenter class?
I'm managing the History in my project via Places.
What I do is this:
implement PlaceRequestHandler on top level (for example AppController),
register it -> ...
1
vote
1answer
282 views
Login problem with GWT History
I have the follow problem. This is the situation i've got when user login the application and register History.
The workflow is:
1. There is a checking if user is already login- meaning if user object ...
0
votes
2answers
246 views
Submit button + GWT History
A good design solution when a form is submitted, what should be the behavior of "back" and then "forward" browser button.
Similar question is what should happen when a user logout an application the ...
3
votes
5answers
250 views
GWT History question
What is consider as a good design regarding back/forward project capabilities.
I mean - uses are able to navigate through the application only via back/forward browser buttons or to have also and ...
1
vote
1answer
285 views
History GWT demo - does not work
I have played for a while with History in gwt because i intend to implement it in my current project, so i created a small demo project just to see how it works and do some practice.
So, for some ...
0
votes
2answers
721 views
GWT: Replace AbstractPlaceHistoryMapper with a custom mapper using deferred binding
Looks like the class that is generated for PlaceHistoryMapper is hard-coded to use AbstractPlaceHistoryMapper as the super class.
So, I am trying to work around this by trying to replace this ...
0
votes
2answers
370 views
GWT History Problem
when i am adding a new history item like this
History.newItem("Register");
the url correcly changes to
http://127.0.0.1:8888/BiddingSystem.html?gwt.codesvr=127.0.0.1:9997#Register
and loads the ...
0
votes
3answers
1k views
GWT - Trouble with History first token
I have this problem : when i call the Content class (the one who decide which page to view, due to the #param) I do somethings like this :
History.addValueChangeHandler(this);
...
0
votes
1answer
476 views
GWT - Why this history doesnt work?
I am been trying history on GWT. I find this approch really nice to implement. Unfortunatly, my code doesnt work.
This my actual code :
public class PageLoader implements EntryPoint, ...
0
votes
2answers
309 views
TreeItem with I18N GWT
I am wondering how to build a TreeItem with I18N and not have different tokens for a menu item.
If I build a TreeItem like this:
@UiField
Tree tree;
TreeItem customer = new ...
0
votes
0answers
76 views
Does Alexa count GWT's history URLs as page views?
GWT history creates urls similar to: http://domain.com/#Page~SubPage
Does Alexa count those as page views? I'm guessing no. Anyone knows for sure? Thanks!
** Example site: ...
1
vote
4answers
1k views
GWT history iframe
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 ...
3
votes
1answer
215 views
How do I determine whether I am going “forward” or “backward” through my History in GWT?
I am looking at History and History JavaDocs in GWT and I notice that there is no way to tell whether the forward or backward button was pressed (either pragmatically or by the user). The "button ...
8
votes
1answer
4k views
Using GWT History to pass parameters?
I have a page called Orders and a page called OrderDetails. As described in the excellent MVP tutorial I'm working with History (with a central ValueChangeListener) and an "event bus" HandlerManager.
...
1
vote
1answer
1k views
GWT History and IE6 / 7
I've asked this question on the GWT group with no luck, so now I'm trying Stack Overflow :)
There seems to be some problem with GWT's history and IE6 / 7, and I'm trying to confirm this is an actual ...
