Re: Hide/Show Table Row with UIBinder

2010-05-11 Thread Craigo
Thanks Bufferings. UIObject.setVisible works a treat! Cheers. On May 9, 1:33 am, bufferings bufferi...@gmail.com wrote: hi Craigo I think the following is better. // show UIObject.setVisible(myTableRow, true); // hide UIObject.setVisible(myTableRow, false); This is what

Re: Hide/Show Table Row with UIBinder

2010-05-08 Thread Thomas Broyer
On 8 mai, 02:15, Craigo craig...@gmail.com wrote: Some browsers don't like: myTableRow.getStyle().setDisplay(Style.Display.BLOCK); This seems to work much better: myTableRow.getStyle().setProperty(display, ); Strange there isn't a constant value in Style.Display for blank.

Re: Hide/Show Table Row with UIBinder

2010-05-08 Thread bufferings
hi Craigo I think the following is better. // show UIObject.setVisible(myTableRow, true); // hide UIObject.setVisible(myTableRow, false); This is what UIObjects#setVisible(boolean) uses. hope this helps -- bufferings -- You received this message because you are subscribed to the Google

Re: Hide/Show Table Row with UIBinder

2010-05-07 Thread Craigo
Some browsers don't like: myTableRow.getStyle().setDisplay(Style.Display.BLOCK); This seems to work much better: myTableRow.getStyle().setProperty(display, ); Strange there isn't a constant value in Style.Display for blank. O'well. On May 7, 12:23 pm, Craigo craig...@gmail.com wrote: Couldn't