Re: Create Datatable with empty columns and rows

2011-05-15 Thread Clint Checketts
I'd recommend using a listview and use CSS to lay it out as you mentioned. A data table is really useful when dealing with columnar data that needs pagination and sorting. On Saturday, May 14, 2011, malebu milton.qura...@gmail.com wrote:

Re: Create Datatable with empty columns and rows

2011-05-15 Thread Igor Vaynberg
alternatively GridView can create a 3 column layout easily. -igor On Sun, May 15, 2011 at 5:05 AM, Clint Checketts checke...@gmail.com wrote: I'd recommend using a listview and use CSS to lay it out as you mentioned. A data table is really useful when dealing with columnar data that needs

Grouping DataView

2011-05-15 Thread Marcus Breier
Dear all, sorry for this newbie question, but I need a component to group Items within a DataView for display. Since I 've been working a lot with Apple's WebObjects and Project WOnder, I am wondering that there might be no component like good old ERXGroupingRepetition out there. Possibly I

Re: Create Datatable with empty columns and rows

2011-05-15 Thread malebu
GridView seems more logical. I will give it a try but what about the vertical line between grids! ? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Create-Datatable-with-empty-columns-and-rows-tp3523546p3524463.html Sent from the Users forum mailing list archive at

Re: Create Datatable with empty columns and rows

2011-05-15 Thread Igor Vaynberg
each gridview cell can contain a fragment or a panel that contains the header and the list of subcats. -igor On Sun, May 15, 2011 at 8:05 AM, malebu milton.qura...@gmail.com wrote: GridView seems more logical. I will give it a try but what about the vertical line between grids! ? -- View

Serializing restfb DefaultFacebookclient in a wicket facebook application

2011-05-15 Thread labano10
I am building a facebook application in wicket using restfb api. After getting the authToken,I do the following in a wicket page: FacebookClient fbclient = new DefaultFacebookClient(authToken); However, I keep receiving the error: Error serializing object class

Serializing restfb DefaultFacebookclient in a wicket facebook application

2011-05-15 Thread labano10
I am building a facebook application in wicket using restfb api. After getting the authToken,I do the following in a wicket page: FacebookClient fbclient = new DefaultFacebookClient(authToken); However, I keep receiving the error: Error serializing object class

Re: Serializing restfb DefaultFacebookclient in a wicket facebook application

2011-05-15 Thread Bas Gooren
I assume you create the fbclient within the AppPage class? If so, you'll need to store a serializable value/object in the page (or session) with which you can re-create the FacebookClient. Your authToken variable would be a good starting point, see if that is serializable. If so, store the

Re: Serializing restfb DefaultFacebookclient in a wicket facebook application

2011-05-15 Thread labano10
@Sebastian, authToken is basically a string. So you are saying I store it in the wicket session, construct fbclient within session and call like session.getfbclient when I want to use it. Or didn't I get you right? -- View this message in context:

Re: Grouping DataView

2011-05-15 Thread Pedro Santos
Hi Marcus, it is very usual to nestle repeater components to present groups and its details. On Sun, May 15, 2011 at 11:46 AM, Marcus Breier mlist.mbre...@gmx.net wrote: Dear all, sorry for this newbie question, but I need a component to group Items within a DataView for display. Since I

Re: CheckGroupSelector - set checked if all Checkboxes are already selected

2011-05-15 Thread Carl-Eric Menzel
Since there was no ticket filed yet for this, I created a new one: https://issues.apache.org/jira/browse/WICKET-3718 It contains a patch that adds this feature (I called it auto update) to CheckGroupSelector, and provides select-all components for the other types of checkboxes too. Please have a

Re: Grouping DataView

2011-05-15 Thread andrea del bene
Hi Marcus I guess you have already had a look at standard Wicket repeaters: http://wicketstuff.org/wicket14/repeater If no one of them satisfy your needs you can consider to implement a custom table view which reproduces the behavior of ERXGroupingRepetition Dear all, sorry for this

Strange error, cannot modify hierarchy

2011-05-15 Thread Brown, Berlin [GCG-PFS]
I am shooting in the dark but I thought I would post the error I am getting. I get this error. Cannot modify component hierarchy after render phase has started. The full stack trace is at the bottom of this post. During the form submission process (user clicks on link) then I get the error

Re: Serializing restfb DefaultFacebookclient in a wicket facebook application

2011-05-15 Thread Bas Gooren
No, since a session will also be serialized at some point, you will have the same problem, only less frequent. What you can do is manage the client per request, either through a custom RequestCycle, or if you use google guice or something similar you can use a request-scoped provider.

Re: Rendering the page, error some elements are missing

2011-05-15 Thread Jeremy Thomerson
On Fri, May 13, 2011 at 2:10 PM, Anna Simbirtsev asimbirt...@gmail.comwrote: The component(s) below failed to render. A common problem is that you have added a component in code but forgot to reference it in the markup (thus the component will never be rendered). 1. [MarkupContainer

Re: Getting Parameters from URL

2011-05-15 Thread Jeremy Thomerson
Hielke's response is spot-on. The real question is: why do you need to access parameters in your session? At least your example is concerning - it's not typically a good sign to be pulling the User ID from the request (where it looks like you're using it to create a session for a user). --

updating a label's model with ajax

2011-05-15 Thread wmike1...@gmail.com
Hi all, I'm looking to change the model of a label when a button is clicked. As of now, I'm using an ajax button and doing target.addComponent(myLabel) inside that button's onclick method. However, the text on the page doesn't change when the button is clicked. This label happens to be hidable,