Is there a way in GWT to determine if the Shift key is inside the onClick() handler?
For example:
import com.google.gwt.event.dom.client.ClickEvent; import com.google.gwt.event.dom.client.ClickHandler; public class PanelTileBase implements ClickHandler { PanelTileBase() { addClickHandler(this); } public void onClick(ClickEvent event) {
Thanks!
gwt
Soren johnson
source share