Re: What's a good widget for a small table?

2011-10-08 Thread benneq
A vertical panel containing several horizontal panels SOUNDS pretty straight forward, indeed. BUT: Do it, look at you dom tree, and see that it's totally ugly! It is: A tabletrtd (vertical panel) containing several tabletrtd../tdtd../td/tr/table (1 horizontal panel). On 7 Okt., 22:45, Jeff

Re: What's a good widget for a small table?

2011-10-08 Thread Jeffrey Chimene
On 10/8/2011 4:23 AM, benneq wrote: A vertical panel containing several horizontal panels SOUNDS pretty straight forward, indeed. BUT: Do it, look at you dom tree, and see that it's totally ugly! It is: A tabletrtd (vertical panel) containing several tabletrtd../tdtd../td/tr/table (1

Re: What's a good widget for a small table?

2011-10-08 Thread Aidan O'Kelly
Well, its creating a table with a table for each row.. to end up with a table structure... If its a statically sized table, you can just write the table structure yourself in UiBinder, and place Widgets/Text in each td. On Sat, Oct 8, 2011 at 2:53 PM, Jeffrey Chimene jchim...@gmail.com wrote:

Re: What's a good widget for a small table?

2011-10-08 Thread Jeffrey Chimene
On 10/8/2011 7:29 AM, Aidan O'Kelly wrote: Well, its creating a table with a table for each row.. to end up with a table structure... If its a statically sized table, you can just write the table structure yourself in UiBinder, and place Widgets/Text in each td. Is that to to reduce DOM

Re: What's a good widget for a small table?

2011-10-08 Thread Mike Dee
Wouldn't that be a Grid control? Would a Grid control be a little heavy handed in that it seems to be designed to handle widgets in its cells. A property table - or something like that - seems ideal (if it existed). On Oct 8, 8:30 am, Jeffrey Chimene jchim...@gmail.com wrote: On 10/8/2011 7:29

Re: What's a good widget for a small table?

2011-10-08 Thread Strashimir
FlexTable would do the job fine. Regards, Strashimir On Oct 7, 11:38 pm, Mike Dee mdichiapp...@gmail.com wrote: I have small data tables that I'd like to display.  In the widget showcase for DataGrid and CellTable it says they are ideal for large amounts of data. The goal is to display

Re: What's a good widget for a small table?

2011-10-08 Thread Aidan O'Kelly
Well Grid uses a html table to work, yes. The point is when working with UiBinder you can use normal HTML markup to make a widget, so you can do: g:HTMLPanel table tr tdName/tdtdg:TextBox ui:field=nameText/td /tr tr tdPhone/tdtdg:TextBox ui:field=phoneText/td /tr

Re: What's a good widget for a small table?

2011-10-08 Thread Piro
I would use CellTable even if it says it is ideal for large amount of data. The ideal sentence only says that CellTable has no performance issues with large amount of data because it supports paging (if you need it) and renders only visible cells. If you are not familiar with cell widgets it can

Re: What's a good widget for a small table?

2011-10-07 Thread Jeff Chimene
On 10/07/2011 01:38 PM, Mike Dee wrote: I have small data tables that I'd like to display. In the widget showcase for DataGrid and CellTable it says they are ideal for large amounts of data. The goal is to display detail info. For example, to display a single record from a database - not