Navigate CellTable with arrow keys

2012-11-20 Thread Kevin Buikema
I'm trying to come up with a way to navigate the elements of a CellTable with arrow keys, and while I can get the key events pretty easily, I'm not sure of a good way to move the focus from one Cell to another within the table. -- You received this message because you are subscribed to the

Two footers in a CellTable?

2012-09-17 Thread Kevin Buikema
Is there a way within the standard CellTable to add two footers to the table? I need to have two separate non-editable total rows, and I was hoping to be able to do it without having to customize objects or create a separate table for the totals. -- You received this message because you are

CellTable - style specific columns

2012-08-27 Thread Kevin Buikema
I'm using a CellTable element via UIBinder, and I'm trying to come up with a way to simply style specific columns in the table to make them look distinct. To make it as simple as possible, I set up a separate css style for them: .special_column_style { background-color: pink; } and used the

Re: CellTable - style specific columns

2012-08-27 Thread Kevin Buikema
Doing some additional debugging, it appears the browser is unable to locate special_column_style, because GWT translates the css file into it's own custom resource. Is there some way I can figure out what GWT transforms my css into, so I can set that style class for a column? -- You received

Handling events via @UiHandler with CellTable

2012-08-22 Thread Kevin Buikema
I'm using a CellTable with EditTextCells and CheckboxCell columns in an MVP app, and I'm trying to set up a UiHandler for the updates instead of explicitly declaring field updaters for each column, to make it more abstracted so the handling can be done in the presenter. Is something like that