Retrieve Cell from another Column

2011-05-04 Thread cvh
Hello all. I have two Columns in a CellTable: Column A contains a custom RadioButtonGroupCell, which extends AbstractInputCell. The group contains three radio buttons. Column B contains a ButtonCell, and a click on the button is supposed to clear the selection made by the user in Column A. My p

Paging and tables

2011-04-07 Thread cvh
Hello all, would be grateful for any ideas. Requirement -- (A) table containing A.1 text columns A.2 one column for HTML content A.3 one column to house a radio button group (B) ability to page through records, e.g. by use of SimplePager. Alternatives con

Re: TabLayoutPanel

2011-03-29 Thread cvh
Hello Marco, This is what I do: 1. client code: DecoratedTabPanel tabPanel = new DecoratedTabPanel(); tabPanel.setStylePrimaryName("tabPanel"); tabPanel.setAnimationEnabled(true); 2. CSS: .tabPanel { width:99%; height:99%; position:fixed; top:5px; left:5

Proxy hell

2011-03-15 Thread cvh
I have bashed my head against this for almost two weeks now. I am trying to do something really simple - proxy a request from a stand- alone Jetty 6.1.22 instance to localhost to connect to my Bugzilla installation. My app is developed using GWT2.2.0. My Bugzilla runs just fine at http://localhos

Re: Issues with IE GWT compiled javascript is 11MB

2011-03-04 Thread cvh
Yes, you can instruct GWT to compile only for say Firefox on Windows: see http://stackoverflow.com/questions/890352/gwt-module-xml-how-to-redefine-and-use-more-than-one-user-agent On Mar 4, 5:18 pm, sridevi macherla wrote: >  Is there any mechanism to generate browser sepecific example I have 3

Jetty configuration

2011-03-04 Thread cvh
Hello all. As I understand it, GWT uses an embedded Jetty server. Can anyone tell me where I can find the Jetty .xml configuration files used by GWT? I have a webapp which makes uses of Jetty's ContinuationFilter and ProxyServlet. The app works fine under GWT but fails when run in a separate Jetty

Re: CGI problem

2011-02-28 Thread cvh
Whilst my fix worked for my app running on GWT development mode, I had to make a change so it would run properly on a separate Jetty server running on port 8080. The change I had to make was as follows: change : Frame bugFrame = new Frame("/bugzilla/") to : Frame bugFrame = new Frame("/bugzilla/

Re: CGI problem

2011-02-26 Thread cvh
I was able to fix this as follows, in a GWT project I called 'Test'. I followed this useful blog posting http://blogs.yellowfish.biz/2010/gwt-development-with-traditional-servlets/ My Test.java file reads as follows package com.searchsystem.gwt.client; import com.google.gwt.core.client.EntryPoi

CGI problem

2011-02-23 Thread cvh
Hello all, I've been knocking my head against this for a few days now. I have a GWT webapp (running on Ubuntu Lucid Lynx) which acts as a kind of dashboard for my application. The dashboard has a number of tabs, one of which displays my bugzilla installation. The bugzilla home page is contained wi

Re: DecoratedTabPanel setWidth and setHeight not working as expected

2011-02-03 Thread cvh
Using GWT2.1.1, I had some limited success setting the height of the DecoratedTabPanel by including this in my CSS file: .gwt-TabPanelBottom { height: 10%; } see the Javadoc for DecoratedTabPanel which indicates that two CSS style rules are used: .gwt-DecoratedTabPanel { the tab pane

Inherited modules and TabPanel

2011-01-28 Thread cvh
Hello all, I'm a GWT novice, using the Eclipse GWT plugin. I've got it working to the point where I have two separate projects (let's call them project 1 and project 2) both running fine. Both of these projects have their own .gwt.xml files, entry point classes and various servlets. Now I want to