Is there a way to add a mouselistener to a treeitem that has these properties?

2009-07-08 Thread ProtoLD
I need to add a mouselistener to my tree items that pops up a mini- menu to the side of the tree item. On this menu there will be 3 icons that are clickable with different actions. I'm not asking for someone to write this for me, I've done it about 30 times or so, but cannot get around IE/GWT

Feature Request: Table mouse functions

2009-04-02 Thread ProtoLD
Is there a place to request features? One specifically for me, is more mouse functions for the tables. As it is they only have a onCellClicked which is nice, but there are quite a number of other mouse functions supported in JS. One specifically that I had to write a custom module for (which

Re: Trying to change the style of tabTopLeft and right on tabBars

2009-03-23 Thread ProtoLD
Can I bump this? Bump? Still haven't found a solution to this. On Mar 20, 1:09 pm, ProtoLD protosh...@gmail.com wrote: All the other CSS styles are easily applied after setting a style name to the tab bar and addressing them as follows: .customizedStyleName .tabTopCenter

Trying to change the style of tabTopLeft and right on tabBars

2009-03-20 Thread ProtoLD
All the other CSS styles are easily applied after setting a style name to the tab bar and addressing them as follows: .customizedStyleName .tabTopCenter { background-image: url('images/centerTopImage.gif'); } but this doesn't appear to work for the two corners, the base GWT overrides my

GWT Stackpanel selected issue

2009-02-25 Thread ProtoLD
I cannot seem to set the CSS of the selected stack panel without having it get overwritten by the unselected CSS. If I leave the unselected alone, the selected stack panel will correctly overwrite, but if I define my own, it will not. Is this a bug, or some working as intended thing? Here I

Re: How I add my own class to .gwt-TabPanelBottom?

2009-02-20 Thread ProtoLD
to test, but nothing really happened. Any ideas on how to erase the border of the TabPanel? On 19 Feb., 22:13, ProtoLD protosh...@gmail.com wrote: Forgot to mention, I'd' like to do something like this: .mainTabPanels .gwt-TabPanelBottom {   border: 0; } On Feb 19, 3:12

How I add my own class to .gwt-TabPanelBottom?

2009-02-19 Thread ProtoLD
I can't figure out for the life of me which piece I need to add my style class to so that I can separate it from other tab panels (otherwise I'd just alter .gwt-TabPanelBottom itself). I want to remove the border just around this one specific tabPanel.

Re: How I add my own class to .gwt-TabPanelBottom?

2009-02-19 Thread ProtoLD
Forgot to mention, I'd' like to do something like this: .mainTabPanels .gwt-TabPanelBottom { border: 0; } On Feb 19, 3:12 pm, ProtoLD protosh...@gmail.com wrote: I can't figure out for the life of me which piece I need to add my style class to so that I can separate it from other tab

Passing JSON data error

2009-02-01 Thread ProtoLD
I'm passing a simple set of data in JSON format back to GWT. The class for interpreting this contains the following code: protected GetProductTree() { } public final native String getCustomerName() /*-{ return this.customername; }-*/; From what I see, I should simply be able

Adding packages to GWT

2009-01-13 Thread ProtoLD
I know this a common question, but I've tried the answers I found without avail. I have a tree structure like so: -com.mycompany -public MyApplication.html MyApplication.gwt.xml -com.mycompany.client MyApp.java -com.mycompany.gui TableLayout.java I tried this: module inherits

Re: Adding packages to GWT

2009-01-13 Thread ProtoLD
specify a new source path, it removes the default one (like a default constructor). You need to specify your gui path and also redeclare the default, which was superseded by yours: source path=gui / source path=client / On Tue, Jan 13, 2009 at 1:34 PM, ProtoLD protosh...@gmail.com wrote: I