CheckGroup, CheckBox and Check

2008-03-14 Thread Greg Dunn
I've got a collection of beans ("roles") containing user authorization roles that I'm using as the Model for a ListView. I'm confused by the interaction between CheckGroups, Check's and CheckBox's. If I use CheckBox my roles show up selected if the user has the role, but I can't get the Model Ob

RE: CheckGroup, CheckBox and Check

2008-03-14 Thread Greg Dunn
l is the selection mode, so it should be bound to user's assigned roles list, not the list of all available roles. -igor On Fri, Mar 14, 2008 at 7:45 AM, Greg Dunn <[EMAIL PROTECTED]> wrote: > > I've got a collection of beans ("roles") containing user authorizati

DefaultDataTable not paging correctly

2008-03-20 Thread Greg Dunn
I followed the repeater examples to create a data table backed by a SortableDataProvider but it's not paging correctly. When the table first loads, everything looks great, but whenever I click a paging link I'm only getting the first 10 records back. My debugging indicates my SortableDataProvider

RE: DefaultDataTable not paging correctly

2008-03-20 Thread Greg Dunn
ct) { return new DetachableUserModel((UserBean)object); } } -Original Message- From: KennyS [mailto:[EMAIL PROTECTED] Sent: Thursday, March 20, 2008 10:14 AM To: users@wicket.apache.org Subject: Re: DefaultDataTable not paging correctly Could you provide the code

RE: Display of own message in FeedbackPanel

2008-03-20 Thread Greg Dunn
Wicket has a gadget for that since 1.2. In your form: add(new EqualPasswordInputValidator(password, repeatPassword)); -Original Message- From: Fabien D. [mailto:[EMAIL PROTECTED] Sent: Thursday, March 20, 2008 11:25 AM To: users@wicket.apache.org Subject: Display of own message in Feedb

RE: DefaultDataTable not paging correctly

2008-03-20 Thread Greg Dunn
Thanks, I'm keeping all my users, and the sorting and paging work now. There is one glitch though, when I click a column header to resort, I'm only resorting the items that are in view on the current page, not the entire set. That doesn't seem right, can it be rectified? -Original Message---

PageParameters missing.

2015-06-29 Thread Greg Dunn
I have a page that takes a set of parameters generated by an outside source. It's Kiosk software that reads magnetic track data from a card reader device, converts it to parameters and generates a request to my page. Prior to upgrading to 1.5, the code below worked to read them, but now these

ContextRelativeResourceReference CSS rendering problem

2021-10-20 Thread Greg Dunn
I'm using the following code under Wicket 9 to load a CSS file private static final ContextRelativeResourceReference CSS_FILE = new ContextRelativeResourceReference("style/cssFile.css", false); @Override public void renderHead(IHeaderResponse response) { res

RE: ContextRelativeResourceReference CSS rendering problem

2021-10-21 Thread Greg Dunn
safe. Hi, On Thu, Oct 21, 2021 at 1:15 AM Greg Dunn wrote: > I'm using the following code under Wicket 9 to load a CSS file > > > > private static final ContextRelativeResourceReference CSS_FILE = > > new ContextRelativeResourceReference("st