Re: Chrome 15, GWT DMP Plugin crashes

2011-10-27 Thread pjspychala
works fine! Thanks Savilak On Oct 26, 8:38 pm, pjspychala tomatoactiva...@gmail.com wrote: After upgrading to a new version of the browser (Chrome15) it seems that the plugin no longer likes whats going on. I've tried uninstalling and reinstalling the plugin without success. What

Chrome 15, GWT DMP Plugin crashes

2011-10-26 Thread pjspychala
After upgrading to a new version of the browser (Chrome 15) it seems that the plugin no longer likes whats going on. I've tried uninstalling and reinstalling the plugin without success. What happens: Webapp loads I can do some actions on the webapp, but 95% of actions will freeze chrome.

Global event handler

2011-05-27 Thread pjspychala
I want to catch certain keypress events that get caught no matter what widget is focused. I have: public class MainController { public void onModuleLoad() { RootLayoutPanel.get().add(new MainView()); } } public class MainView extends Composite implements HasKeyPressHandlers,

Re: GWT 2.1 Cell Widgets style

2010-10-28 Thread pjspychala
http://code.google.com/p/google-web-toolkit/source/browse/releases/2.1/user/src/com/google/gwt/user/cellview/client/CellTable.css you can override any of those ie: .cellTableHeader { color: #fff; } -- You received this message because you are subscribed to the Google Groups Google Web

GWT 2.1 Cell Widgets style

2010-10-21 Thread pjspychala
I've been trying to clean up my styling of the new Data Presentation Widgets in GWT 2.1. Right now, I am having a hard time changing the style of the header of a CellTable without going through DOM. I have tried passing a extended Resources class to the CellTable constructor with odd results (the

Re: GWT 2.1 Cell Widgets style

2010-10-21 Thread pjspychala
= new CellTableJunk(15, reso); I forgot the (provided=true) part, this works now. On Oct 21, 1:06 pm, pjspychala tomatoactiva...@gmail.com wrote: I've been trying to clean up my styling of the new Data Presentation Widgets in GWT 2.1. Right now, I am having a hard time changing the style