Re: [T5.2] Grid component manipulation

2010-11-01 Thread Daniel Henze
Hi Mohammad, I did something similar as I needed paging and most of the Grid functionality without showing a grid. My approach was to extend the Grid, GridRows and GridColumns components. Most java code did stay the same, but the regarding templates got updated to my clients requirements. A

Re: [T5.2] Grid component manipulation

2010-11-01 Thread Kalle Korhonen
If you want rows and columns, use the grid, end of story. For paging divs and other arbitrary items, check out ChenilleKit's PagedLoop component, it's pretty flexible. Kalle On Mon, Nov 1, 2010 at 6:54 AM, Muhammad Mohsen wrote: > Hello everyone, > > My main objective is to list complex data in

Re: [T5.2] Grid component manipulation

2010-11-01 Thread Thiago H. de Paula Figueiredo
On Mon, 01 Nov 2010 13:03:13 -0200, Muhammad Mohsen wrote: I have no considerable designing experience to argue with your statement. It's just that sometimes a client would insist on having a table-less application. Unless I can't override the Grid to render using tables, I can't accept the j

Re: [T5.2] Grid component manipulation

2010-11-01 Thread Thiago H. de Paula Figueiredo
On Mon, 01 Nov 2010 12:23:58 -0200, Muhammad Mohsen wrote: It's a debate, whether to use tables or divs. Check this page: http://en.wikipedia.org/wiki/Tableless_web_design Search for: "This causes a number of problems" I think you got th

Re: [T5.2] Grid component manipulation

2010-11-01 Thread Muhammad Mohsen
I have no considerable designing experience to argue with your statement. It's just that sometimes a client would insist on having a table-less application. Unless I can't override the Grid to render using tables, I can't accept the job. That's all :) I wish the mailing list is always active is it

Re: [T5.2] Grid component manipulation

2010-11-01 Thread Juan E. Maya
Muhammad, as the article points out, tableless design is: "...a philosophy eschewing the use of HTML tables for page layout control purposes." Tables have a very good purpose in HTML they should be used to display tabular data (A grid is exactly that). The problem is that 10 years ago tables were

Re: [T5.2] Grid component manipulation

2010-11-01 Thread Michael Gentry
Read further: http://en.wikipedia.org/wiki/Tableless_web_design#The_use_of_tables "Using divisions to simulate a table for the display of tabular data is as much a design flaw as using tables to control graphic and page layout." mrg On Mon, Nov 1, 2010 at 10:23 AM, Muhammad Mohsen wrote: > It

Re: [T5.2] Grid component manipulation

2010-11-01 Thread Muhammad Mohsen
It's a debate, whether to use tables or divs. Check this page: http://en.wikipedia.org/wiki/Tableless_web_design Search for: "This causes a number of problems" Also it's sometimes a client request that the web application becomes table-less and o

Re: [T5.2] Grid component manipulation

2010-11-01 Thread Thiago H. de Paula Figueiredo
On Mon, 01 Nov 2010 11:54:17 -0200, Muhammad Mohsen wrote: Hello everyone, Hi! Is there a way I can override the Grid component to use "div"s instead of tables ? I don't think so. Why do you want that? And to hide the header shown. You can CSS to hide it from view or use DOM rewriti

[T5.2] Grid component manipulation

2010-11-01 Thread Muhammad Mohsen
Hello everyone, My main objective is to list complex data in rows with the paging feature implemented. I can think of other ways to list rows with complex data but the paging feature is already implemented in the Grid component and I don't want to reinvent the wheel so I'm thinking of using the G