Looking to implement a table that has it all.

View: New views
5 Messages — Rating Filter:   Alert me  

Looking to implement a table that has it all.

by satar :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

I am looking to develop a table that has sortable columns, using an ajax
approach of course. I want to highlight the row that one is mousing over
with one color and ideally if a row is currently selected it would be
highlighted with a different color. Additionally, I want to have alternating
colors for the rows that are not selected. Only one row at a time can be
selected because the row selected displays its values in a form on the left
hand side.

I have seen different examples containing pretty much everything I want but
haven't seen one that does it all. I implemented an example using Igor's
AjaxFallbackDefaultDataTable, which made it extremely easy to create a
sortable ajax enabled table :). I have also ran across the alternating
colors and the mouseover highlighting in the WickeStuff Dojo
(selectabletable) Example. Is it possible to have it all using one or the
other approach? Sorry if the answer is obvious, I am still pretty new to
Wicket.

Re: Looking to implement a table that has it all.

by jthomerson :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

I've never used it, but Matej created the inmethod grid:
http://wicketstuff.org/grid-examples/

--
Jeremy Thomerson
http://www.wickettraining.com




On Thu, Jul 2, 2009 at 1:36 PM, Steve Tarlton<starlton@...> wrote:

> I am looking to develop a table that has sortable columns, using an ajax
> approach of course. I want to highlight the row that one is mousing over
> with one color and ideally if a row is currently selected it would be
> highlighted with a different color. Additionally, I want to have alternating
> colors for the rows that are not selected. Only one row at a time can be
> selected because the row selected displays its values in a form on the left
> hand side.
>
> I have seen different examples containing pretty much everything I want but
> haven't seen one that does it all. I implemented an example using Igor's
> AjaxFallbackDefaultDataTable, which made it extremely easy to create a
> sortable ajax enabled table :). I have also ran across the alternating
> colors and the mouseover highlighting in the WickeStuff Dojo
> (selectabletable) Example. Is it possible to have it all using one or the
> other approach? Sorry if the answer is obvious, I am still pretty new to
> Wicket.
>

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@...
For additional commands, e-mail: users-help@...


Re: Looking to implement a table that has it all.

by satar :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Jeremy, those examples are PERFECT! Where does one find the source to them :P

Re: Looking to implement a table that has it all.

by jthomerson :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Wicket stuff.
https://wicket-stuff.svn.sourceforge.net/svnroot/wicket-stuff/trunk/wicketstuff-core/

--
Jeremy Thomerson
http://www.wickettraining.com




On Thu, Jul 2, 2009 at 2:18 PM, satar<starlton@...> wrote:

>
> Jeremy, those examples are PERFECT! Where does one find the source to them :P
> --
> View this message in context: http://www.nabble.com/Looking-to-implement-a-table-that-has-it-all.-tp24311958p24312528.html
> Sent from the Wicket - User mailing list archive at Nabble.com.
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@...
> For additional commands, e-mail: users-help@...
>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@...
For additional commands, e-mail: users-help@...


Re: Looking to implement a table that has it all.

by satar :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Nice, thanks for the pointers Jeremy!