Tagged Questions
0
votes
1answer
28 views
Consuming GWT click events
Due to performance reasons, I have a custom made table. The table consists of columns that are created as HTML DIVs, and the row is wrapped into an AbsolutePanel. The position of the column(s) and the ...
0
votes
0answers
18 views
How can I add different events to each TreeNode with opening windows I have made
I new a TreeGrid with some TreeNodes.And addCellClickHandler to click event.
Firstly,I think I can do it in this way:
treenode.getSelectedData().addClickHandler
But it doesn't work this way.
...
0
votes
1answer
28 views
How to implement SelectionEvent in Composite GWT
I am writing a Composite widget in GWT, and want for it to implement HasSelectionHander and fire a SelectionEvent when an element of the composite is selected
So far, I have the following:
public ...
0
votes
2answers
75 views
GWT capture event in RichTextArea or in IFrame
I have a RichTextArea
private RichTextArea richTextArea;
and I'm trying to capture a paste event like this:
DOM.sinkEvents((com.google.gwt.user.client.Element) richTextArea.getElement(), ...
0
votes
2answers
36 views
GWT - Handler for lost focus on widgets in flextable
I'm currently coding in GWT, for the first time, and it's going well so far. I'm having a problem with EventHandlers though. I have a FlexTable which has 2 columns, 1 for labels, and 1 for ...
0
votes
1answer
42 views
Changing url with parameters in gwt framework
Could someone give me an example how to use celltable in case I would like to change url?
I have a simple celltable -
On session select I would like to change url to something like this -
...
1
vote
1answer
51 views
Handler on DOM elements in GWT
I want to add the handler on the buttonelement and i have implemented it as follow. Please help me in resolving the error in this code. I do not want to add handler directly on the button widget.
...
0
votes
0answers
23 views
Javascript/GWT - Can multitouch events be captured on a touchpad?
Can multitouch events (two, three fingers) be captured on a laptop browser (ex. Chrome) when using the touchpad, with Javascript / GWT ?
0
votes
1answer
27 views
How to listen to ValueChangedEvents fired by widgets on Editor<?> in GWT?
My Editor concists of several TextBoxes, CheckBoxes, etc. What is the proper way of listening on the editor itself for ValueChangeEvents triggered by its widgets?
I'm trying to make sense of ...
0
votes
2answers
59 views
When to delegate events with GWT
When would be an appropriate time to delegate events with GWT using:
void com.google.gwt.user.client.ui.Widget.delegateEvent
Usually events dispatched by browser bubble up the node so I can't think ...
2
votes
1answer
78 views
What exactly is BrowserEvent and NativeEvent for GWT?
What exactly is browser event? For example if I have a custom widget which contains a single button which overrides onBrowserEvent. And onBrowserEvent method is only called when you click on the ...
3
votes
1answer
48 views
gwt canvas- handling events altogether differently
Gwt HTML5 Canvas wrapper can responds to mouse and keyboard events, it binds to 5 - 6 types of different events, my question is, it is possible to define entirely new event system such as CanvasEvent ...
0
votes
1answer
41 views
GWT Propagate event through AbsolutePanel
I have a CellTable with ClickableCell. When I click on it, a popup opens and show the clicked cell table as exepected. The CellTable is added in a AbsolutePanel(Parent).
For some developpment, an ...
1
vote
1answer
52 views
Seemingly redundant event and event handlers
I will explain with an example. My GWT project has a Company module, which lets a user add, edit, delete, select and list companies.
Of these, the add, edit and delete operations lands back the user ...
1
vote
3answers
70 views
OnLoad Event of GWT Widget like TextBox, TextArea
I want to catch the onLoad Event of TextBox. But I am not finding any handler through which I can call it. GWT provides LoadHandler for the same purpose. But I don't know how should I instantiate the ...
1
vote
0answers
65 views
Simulate key events for text inputs?
How can I simulate a key press event for a text input.
I have a GWT.TextArea and on a certain condition I want to perform simulate a KeyEvent inside the textbox.
For testing, I tried to simulate the ...
2
votes
1answer
110 views
The method isDefined(char) is undefined for the type Character
I'm testing to see whether an input key is a unicode character (as opposed to caps lock, insert, etc) using the Character.isDefined method in GWT. Here is the code sample for the key event.
public ...
0
votes
1answer
133 views
Input Text fields don't move cursor on mouse click?
I have an issue with all of my Input Text fields, maybe someone has an idea:
I'm using GWT, and just discovered that the text in of my Input Fields cannot be selected using Mouse. Also clicking ...
1
vote
1answer
202 views
GWT WindowClosingHandler firing on Browser refresh too
Here I am facing an issue with the code below I wrote to detect the browser's close event to make user logged out from website.
But unfortunately this event fires on Refresh too :(.
...
0
votes
1answer
286 views
GWT - setText and setValue not working for TextBox on initial load
I have a couple of text-boxes on a page where the user can enter some numeric values; however, try as I might, I can't fill those text-boxes with default values - specifically I would like 0.0 ...
0
votes
2answers
104 views
How to detect number keys in a NativeEvent?
Looking at com.google.gwt.dom.client.NativeEvent extends JavaScriptObject, how can I detect if the event was a number?
I thought of Character.isDigit(event.getKeyCode()), but this would give me an ...
0
votes
1answer
85 views
GWT cancel a keypress event in a RichTextBox
I would like to cancel a particular keypress event in a RichTextBox.
Here it is described how to do it in a regular TextBox, but it doesn't work in a RichTextArea because it doesn't have the ...
0
votes
2answers
143 views
GWT hold mouse button
I'm working with GWT and want to do an action when the user holds the left mouse button on a GWT button. But I can't find the right event handler or another solution for that problem.
Is there a way ...
0
votes
0answers
193 views
GWT Fileupload, what event or handler when user click the choose file button
I am new to GWT/GAE.
To use GAE Blobstore service, a upload url must be returned from server side, as the tutorial in this blog .
But it seems this get upload url service can be called while user is ...
3
votes
2answers
197 views
How to remove GWT menubar on Screen click?
I am a beginner using GWT. I have a menubar which pops-up on a Label click. I need to remove it when the user clicks anywhere on screen except the Label which caused it to display (Legal) I tried ...
1
vote
2answers
914 views
How can I get the selected row in a GWT CellTable when the keys up and down are used?
I want to get the selected row in a GWT CellTable when the user pressed down the keys up or down. In my example I have a table with three columns (ID, name, date) and I have implemented the code to ...
1
vote
2answers
136 views
Need MouseOutEvent of MenuBar to detect click: GWT
I am a beginner using GWT. I have a menubar which I want to retain on the screen even if the mouse is not over it. However when the mouse is not over the menubar and clicked somewhere on the screen ...
2
votes
3answers
120 views
Java reflection with enums and interfaces
I'm working on some code for a User Interface. In this code there is a generic interface like the following:
public interface DataValue<T>
{
public String getName();
public T getValue();
...
0
votes
0answers
30 views
gwt EventTranslator and CellTree
hi i have a problem with CellTree and EventTranslator
here is my instance of EventTranslator:
EventTranslator<ChartField> eventTranslator = new EventTranslator<ChartField>() {
...
1
vote
1answer
102 views
GWT onPreviewNativeEvent runs 2 times when key is pressed
I use the event to show a message when I press the ESC key, but it shows the alert twice. Where is the mistake?
Event.addNativePreviewHandler(new Event.NativePreviewHandler() {
@Override
...
0
votes
0answers
136 views
How to use events in GWT Frame
I would like to capture all events within a GWT frame. I've found several ways to do this, but they only return mousemove and mouseout events. I also need keypresses, input, etc. The goal is to ...
1
vote
1answer
69 views
gwt how to fire own loadevent
I created a widget that displays svg images. Including a browser fork to display a png alternatively.
In case of loading the png I am using Image class and refire its loading event.
The svg-xml ...
3
votes
2answers
48 views
In a GWT application should I use a different event (and event handler) for switching to each View?
I'm coding a Menu in GWT that opens a View according to the clicked entry. The problem is I have a lot of different views (~20).
Right now the design is: the menu fires an event using the eventBus, ...
1
vote
1answer
194 views
GWT: finalize object and remove its event handlers
In GWT I have class MyClass that registers some event handlers. There is an object (object1) of MyClass that, at a specific moment, I want to finalize and make its handlers stop listening, because ...
0
votes
2answers
127 views
GWTP: event sent once but received (handler) twice
On GWTP I am sending a UpdateDiagramBoxEvent with the code below, but the handler is executed twice. In other words, I can see that the sendUpdateDiagramBoxEvent() is executed only once, but it is ...
0
votes
2answers
58 views
GWT, TextField, Alt-Codes and getting an Event
I am having some trouble with GWT and TextField Events.
I want to program a search field and be able to enter Danish and Swedish Names (i.e. Ø = alt + 0216 ) and update apply a filter/formatter and ...
0
votes
0answers
213 views
Youtube player event handler for state changes? (Java/GWT)
I am using the gwt-youtube-api in a java application. I have a function that plays a video but I am having a hard time monitoring the player state changes. For example I want to automatically play a ...
1
vote
2answers
62 views
GWT. How to handle two similar actions with one event?
I've encountered next problem. I've got list of products and each product has button to open its QuickLook PopUp. I've created special event for this button, registered it in EventBus and trigger ...
1
vote
0answers
64 views
gwt - trigger recalculation of 100% width
I have a ScrollPanel in which
I have a FlexTable with two columns and a dynamic number of rows.
The first column only contains Labels, the second various widgets.
Some of those widgets in the second ...
0
votes
1answer
128 views
TextInputCell: Tab not working properly in IE9
I need a tabbing in celltable. So, I have applied a tabIndex to TextInputCell by using template.
interface Template extends SafeHtmlTemplates {
@Template("<input type=\"text\" value=\"{0}\" ...
4
votes
3answers
791 views
GWT - ListBox, how to preview changeEvent
I am working on implementing a ListBox that I want to be able to alert the user when they make a selection in the ListBox. Is there a way to respond to the user clicking an item in the listbox, and ...
0
votes
0answers
350 views
checkboxcell event
GWT 2.4
I have a CheckBoxCell in a CellTable. After checking/unchecking the checkbox, the change event fires twice. I can't figure out why.
Any help will be appreciated.
private void createTable() {
...
0
votes
0answers
224 views
Check an element clicking in the label of a XComoBox
I'm new to gwt/gxt and I'm trying to add a new feature to the class XComboBox from the sencha forum <http://www.sencha.com/forum/showthread.php?73726-ComboBox-with-Multi-Selection , GXT - ComoboBox ...
0
votes
0answers
27 views
GWT designer event
Is there any way how I can intercept GWT designer events? I defined GWT custom control with RichTextArea in it and want to resize RichTextArea when developer resizes custom control (only at design ...
0
votes
1answer
88 views
GWT event not working on an element added in runtime
I create a new CellTable.
Override the onBrowserEvent2 to handle mouse events.
Add a new element to the table.
Sadly the event listener is not working on the added element. It's only working on the ...
1
vote
2answers
126 views
ChangeValueHandler not fired when clicking on the back button In GWT
I have a form and I want to display a confirmation dialogBox when the user presses the back button. Let say that I have one Texbonx that listens to a ChangeValueHandler
addValueChangeHandler(new ...
1
vote
1answer
140 views
Getting old (previous) value from value change events
Why isn't there a possibility to get old value from ValueChangeEvent? It's rather expected from value change event to provide both old and new value.
Is there any build-in event type that would ...
0
votes
2answers
256 views
GWT Event Service Multiple / shared sessions
I build a simple chat with GWT Event Service.
When i open the chat in two tabs of a browser, only one tab catches the event.
I think i can solve this problem by adding this line to the properties:
...
0
votes
0answers
425 views
How to Distinguish Events.OnClick and Events.OnDoubleClick in GXT
I am using Ext GWT 2.2.4. In our application we are binding onClick event on Grid and making a server call to fetch data on the even of Click. We display the result on a Dialog box.
The Problem is, ...
0
votes
1answer
336 views
How to handle the setText(“Some Text”) event on a disabled TextBox
I want to fire and event when setting a value in a TextBox with setText("something")
What I tried so far
w.addChangeHandler(new ChangeHandler() {
@Override
public void ...




