Re: custom header style on CellTable

2010-10-25 Thread Rodrigue Lagoue
Thanks John, I also think the way with Cells is easier one. On Sat, Oct 23, 2010 at 3:49 AM, John LaBanca jlaba...@google.com wrote: The easiest way to have a button in a Header is to create a Header with a ButtonCell ButtonCell buttonCell = new ButtonCell(); Header myHeader = new

custom header style on CellTable

2010-10-22 Thread Rodrigue Lagoue
Hi all, does somebody know, if it is possible to customize the headers' style of a CellTable. I would like to have for exemple header that looks like a button... Many thanks for any help. Rodrigue -- You received this message because you are subscribed to the Google Groups Google Web Toolkit

Re: custom header style on CellTable

2010-10-22 Thread Thomas Broyer
On 22 oct, 14:33, Rodrigue Lagoue rlag...@googlemail.com wrote: Hi all, does somebody know, if it is possible to customize the headers' style of a CellTable. I would like to have for exemple header that looks like a button... If you can do it entirely with CSS, then extend the

Re: custom header style on CellTable

2010-10-22 Thread Rodrigue Lagoue
thanks thomas I start to use the cell widgets in my project tomorrow. On Fri, Oct 22, 2010 at 3:11 PM, Thomas Broyer t.bro...@gmail.com wrote: On 22 oct, 14:33, Rodrigue Lagoue rlag...@googlemail.com wrote: Hi all, does somebody know, if it is possible to customize the headers' style

Re: custom header style on CellTable

2010-10-22 Thread John LaBanca
The easiest way to have a button in a Header is to create a Header with a ButtonCell ButtonCell buttonCell = new ButtonCell(); Header myHeader = new Header(buttonCell); myTable.addColumn(column, myHeader); You can also extend the ClientBundle defined in CellTable.Resource/ Style as tbroyer