Re: DateTextField maxlength idea

2012-02-04 Thread Jim Pinkham
WICKET-4386 <https://issues.apache.org/jira/browse/WICKET-4386> On Sat, Feb 4, 2012 at 5:27 AM, Martin Grigorov wrote: > Ticket please :-) > > On Fri, Feb 3, 2012 at 9:58 PM, Jim Pinkham wrote: > > I have a simple data entry form with a date/time field. > > > >

Re: Communication (in-vm) between webapps

2012-02-03 Thread Jim Pinkham
My first thought would be ehcache all the stuff in front end with a reasonable expiration period (hours maybe), and then expose a very simple JMX interface to manually reset the cache without bouncing the entire app. No need to send much data over JMX other than just a simple 'refresh all caches'

DateTextField maxlength idea

2012-02-03 Thread Jim Pinkham
I have a simple data entry form with a date/time field. My end users (web newbies) have found another interesting way to confound the most clear and straightforward instruction I can devise regarding it's (obvious?) use. I watched an end user type an entire time into the hour component without ta

Re: wicket + jasper reports

2011-10-24 Thread Jim Pinkham
( new ResourceRequestHandler(resource, null)); } So simple, but it took some digging to find so hope this helps someone else. -- Jim. On Fri, Oct 21, 2011 at 2:44 PM, Jim Pinkham wrote: > OK, I've almost got it - thanks for the example. > > It comes down to

Re: wicket + jasper reports

2011-10-21 Thread Jim Pinkham
gt; >response.setHeader("Expires", "0"); > >response.setHeader("Cache-Control", "no-cache"); > >response.setHeader("Cache-Control", "must-revalidate, > > post-check=0, pre-check=

Re: wicket + jasper reports

2011-10-18 Thread Jim Pinkham
Paul, I am doing something very similar - I'd be interested to know more about how you got this working - here is what I've got that works for now, but I'm not real happy with it: In my report forms, I have buttons like this: (details about params omitted - nothing fancy there) add(

Re: CouldNotLockPageException using localized RequestMapper URLs

2011-10-07 Thread Jim Pinkham
re than a minute for it to do its job. > > On Tue, Oct 4, 2011 at 8:37 PM, Jim Pinkham wrote: > > Maybe I'm doing something out of the ordinary - I have several > independant > > 'clients' using their own versions of my site, and it's been working OK > t

CouldNotLockPageException using localized RequestMapper URLs

2011-10-04 Thread Jim Pinkham
27; 41000 [qtp10217370-19] DEBUG - PageAccessSynchronizer - qtp10217370-19 acquired lock to page 0 41000 [qtp10217370-19] DEBUG - PageAccessSynchronizer - qtp10217370-19 released lock to page 0 41000 [qtp10217370-19] DEBUG - PageAccessSynchronizer - qtp10217370-19 notifying blocked threads Sorry if that's too much detail to swallow at once, but I could really use a steer in the right direction here. Thanks, Jim Pinkham http://togetherauction.com

Re: ResourceReference.getResource() returns NULL ?

2011-07-02 Thread Jim Pinkham
Search for "Dynamically loading image" for good examples of how to do this. Basically, you do not put the image data directly into HTML. Instead, you make your page.html with some table perhaps, and a series of links to your images. So you would need one method to list the ids of your images to

Re: Copying PageMaps from one session to another

2011-06-03 Thread Jim Pinkham
To expand on Josh's suggestion, In your Login link (probably on an abstract page you inherit for other app pages) you would have an onClick that doesn't just setResponsePage(YourLoginPage.class), but instead throws the Restart...exception. That way, when the login completes, it should come back t

Re: Wicket 1.5 and WebPageRenderer warn

2011-06-03 Thread Jim Pinkham
Any update on this? I am getting also in 1.5 RC3 On Sun, Oct 17, 2010 at 3:24 PM, Martin Grigorov wrote: > Can you try with latest trunk (1.5-SNAPSHOT) ? > If the warning is still there and you are able to create a quickstart > application then we will be interested to take a look. > Thanks! > >

Internal Error shows up in Google Cache

2011-06-03 Thread Jim Pinkham
I mentioned a few weeks ago I had some page locking issues. I turned on logging and overrode the PageAccessSynchronizer to log and swallow the page lock exception (it still has the timeout wait, so it's not totally disabled), but of course it hasn't happened since, so I still haven't found the roo

Re: Help I need to understand page locking

2011-05-23 Thread Jim Pinkham
ever releases it. > > Instead of going to previous version of Wicket better go to a newer one. > > On Mon, May 23, 2011 at 3:38 PM, Jim Pinkham wrote: > > > I'm using wicket 1.5 RC3 and just started getting some total system > lockups > > recently in prod that I c

Help I need to understand page locking

2011-05-23 Thread Jim Pinkham
I'm using wicket 1.5 RC3 and just started getting some total system lockups recently in prod that I can't understand. Once it gets into this state, the only remedy is to restart tomcat. Unfortunately, I haven't yet figured out how to reproduce this, so meanwhile I thought I'd ask if someone could

Re: Last Page visited

2011-05-17 Thread Jim Pinkham
Well, most browsers already have back button, so I'm not sure why you would want to re-implement that, but assuming you do, here's one way to do what I think Martin is suggesting by "pass a page reference": abstract class AbstractBase extends WebPage { PageReference priorPage; public Ab

[Vote] New Wicket Version Numbering

2011-04-01 Thread Jim Pinkham
I've had a hard time lately trying to get corporate acceptance of the Wicket framework. In fact, our company looked at this comparison of java frameworks: http://en.wikipedia.org/wiki/Comparison_of_web_application_frameworks *Project* *Current Stable Version* Apache Click 2.2.0 Apache Coco

Re: Wicket in Action: problem with redirection

2011-03-18 Thread Jim Pinkham
ar 18, 2011 at 3:41 PM, Martin Grigorov wrote: > On Fri, Mar 18, 2011 at 8:39 PM, Jim Pinkham wrote: > > > .. and I also attached a fairly ugly patched version of > > > > RestartResponseAtInterceptPageException > > > > that seem to work for me, but use at your own risk. > > > > Did you see Igor's response ? > >

Re: [1.5] Two formcomponents editing the same model?

2011-03-17 Thread Jim Pinkham
Hmm... If I were designing a component like this (and for some reason didn't like the ones out there like datepicker that already do this) I'd make a new component that extends panel with 2 separate child controls, each with their own date models. Then use a top level model getter / setter that

Re: Wicket in Action: problem with redirection

2011-03-17 Thread Jim Pinkham
bed: > https://issues.apache.org/jira/browse/WICKET-3493 > > On Wed, Mar 16, 2011 at 9:54 PM, Jim Pinkham wrote: > > > FYI - rc2 still has this problem. It works OK on a BookmarkablePageLink > > to > > a page that implement IAuthorizationStrategy, but not on the new > >

Re: Wicket in Action: problem with redirection

2011-03-16 Thread Jim Pinkham
v wrote: > Try with RC2 and if it still fails please create a ticket with a quickstart > > On Tue, Mar 15, 2011 at 11:27 PM, Jim Pinkham wrote: > > > I think I've got the same situation happening. > > > > It's a login link on my home page, wh

Re: Wicket in Action: problem with redirection

2011-03-15 Thread Jim Pinkham
I think I've got the same situation happening. It's a login link on my home page, whose onClick uses the usual: throw new RestartResponseAtInterceptPageException( AuctionApplication.get().getSignInPageClass()); I've stepped thru this a bit, and I find a problem

Re: [VOTE] WICKET-3218 - Component#onInitialize is broken for Pages

2011-03-08 Thread Jim Pinkham
call this new component visitor something like int onParentChanged(Component parent) - return flags that would let the framework interrupt and restart, repeat after finish, or just continue visiting (or maybe just return boolean repeat flag). -- Jim Pinkham TogetherAuction.com On Tue, Mar 8, 2011

Re: Wicket 1.5 events and Eclipse

2011-03-03 Thread Jim Pinkham
Yes, happens to me also.  I've just been ignoring it. I'm on 1.5-M3 - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

Re: CheckBoxMultipleChoice.getInput() = NULL after switch to AjaxSubmit

2011-02-23 Thread Jim Pinkham
Just a thought - have you looked at the difference between AjaxFormChoiceComponentUpdatingBehavior and AjaxFormComponentUpdatingBehavior? (I know you mentioned upload, but perhaps there is a clue in there...) -- Jim Pinkham On Wed, Feb 23, 2011 at 10:57 AM, eugenebalt wrote: > > Hi

How to make DateTimeField default to PM

2011-01-24 Thread Jim Pinkham
I wanted to have my DateTimeField (That's the wicket-extensions component with a date text field, button to open calendar, and hours/minutes fields with optional AM_PM choice) default to PM instead of AM for new dates because I noticed most dates in this part of my app are evening dates. I came up

Re: Free wicket from component hierarchy hell

2011-01-20 Thread Jim Pinkham
st kidding, ;) and then make a fair decision. Thanks, --Jim Pinkham. On Thu, Jan 20, 2011 at 12:24 PM, Martin Makundi < martin.maku...@koodaripalvelut.com> wrote: > http://farm5.static.flickr.com/4089/4968160827_b742a7448a_z.jpg > > ..hrm.. putting that aside, did you give it a t

Re: JasperReport viewing options for wicket 1.5

2011-01-18 Thread Jim Pinkham
her row and column around the data. Yuck. Any other jasper users want to share any tips here? Thanks, -- Jim. On Tue, Jan 18, 2011 at 2:17 PM, Jim Pinkham wrote: > Well, I seem to be making good progress, but still not 100% there. > > I got "git" and did a clone of wick

Re: JasperReport viewing options for wicket 1.5

2011-01-18 Thread Jim Pinkham
me? (ideally, how I can find it myself rather than mooch) Any advice would be most welcome! Thanks, -- Jim. On Tue, Jan 18, 2011 at 8:59 AM, Martin Grigorov wrote: > You'll need to build it yourself locally. > There is not yet a release of wicketstuff-1.5 at oss.sonatype.org. I thi

Re: JasperReport viewing options for wicket 1.5

2011-01-18 Thread Jim Pinkham
Thanks - so glad to see it's been ported to 1.5; now, I need the jar. Maven gives me: Unable to find resource 'org.wicketstuff:jasperreports:pom:1.5-SNAPSHOT' in repository public (http://public) .. and then again for 2 repositories I tried adding: wicket-snaps, and nonatype-nexus-snapshots at

JasperReport viewing options for wicket 1.5

2011-01-17 Thread Jim Pinkham
I found this tantalizingly close msg: http://www.mail-archive.com/users@wicket.apache.org/msg55375.html Sounds like about what I'd need; except I've moved on to wicket 1.5. I don't need any pagination or other bells & whistles - just a simple way to deliver dynamically generated pdf reports. (A

RenderBodyOnly and email links

2011-01-07 Thread Jim Pinkham
Many may already have realized this, but for anyone who hasn't, I just came across this elegant way to handle optional emails. The user/admin stuff is just an example use-case, simplified to fit here. // User's Statement page lists some items and who bought them... AbstractLink myLink; i

Re: PageParametersEncoder migrating from Hybrid

2010-12-22 Thread Jim Pinkham
t; Regards, > Peter > > 2010-12-22 18:23 keltezéssel, Jim Pinkham írta: > > In my 1.5-M3 app's init, I've got: >> >> // this part works fine, just wanted to show where the comes >> from below... >> getRootRequestMapperAsCompoun

PageParametersEncoder migrating from Hybrid

2010-12-22 Thread Jim Pinkham
In my 1.5-M3 app's init, I've got: // this part works fine, just wanted to show where the comes from below... getRootRequestMapperAsCompound().add(customHomeMapper); getRootRequestMapperAsCompound().add( new MountedMapper("/statement", StatementPage.cl

maybe this authorization strategy helps someone

2010-12-14 Thread Jim Pinkham
I needed to authorize some pages not just by annotation but also based on PageParameters. I came up with this: App.init() ((CompoundAuthorizationStrategy)getSecuritySettings().getAuthorizationStrategy()) .add(new RequiresRolesUnlessAdminAuthorizationStrategy(new Roles("ADMIN"))); p

Re: how to have one app at multiple root contexts

2010-11-22 Thread Jim Pinkham
yours as first. if you were using the locale one > > > IRequestMapper root=getRootRequestMapper(); > LocaleFirstMapper first=new LocaleFirstMapper(root); > setRootRequestMapper(first); > > in this way the locale first will process all urls. > > -igor > > &g

Re: how to have one app at multiple root contexts

2010-11-22 Thread Jim Pinkham
you can take a look at. > basically, you can use the same idea as LocaleFirstMapper to always > prepend the client name into the first segment of the url - creating > virtual contexts in the url space of an app that runs as the root > context. > > -igor > > On Mon, Nov 22, 2010 at 9:58 AM,

how to have one app at multiple root contexts

2010-11-22 Thread Jim Pinkham
I've got a wicket 1.3 app I'm refactoring to add security and more scalable 'root contexts'. I think may involve going to wicket 1.5 but I haven't found any actual examples of this to study - seems like it would be a common need. Right now, I have a dozen different maven profiles that crank out n

Re: Bug in DateTimeField related to Daylight Savings Time

2010-10-27 Thread Jim Pinkham
It also won't accept 3/13/2011 2PM. I added a brief comment to the JIRA. Any fix for this? I don't really want 24hr format. -- Jim P.

learn from my security mistake with getString

2010-07-23 Thread Jim Pinkham
I was just looking around for my dunce cap after noticing this little gotcha - and I thought of this forum instead to share my moment of not-so-brilliance: public LoginForm(final String id) { ... other stuff ... add(new FormComponentFeedbackBorder("user.feedback").a

Configuration Q re Maven Profiles and Start

2010-07-07 Thread Jim Pinkham
There must be something simple I'm missing - I'm fairly new to maven, but I love the profile feature for different client versions of a hosted turnkey app I'm working on. So, I build multiple war files specifying each -PprofileName and rename the WARs to the context root I want (usually same as th

Re: multiple feedback panels in same page

2010-04-06 Thread Jim Pinkham
I just had this page with 2 forms issue - each form has some RequiredTextFields, and some fields with custom StringValidators that I didn't want to change from error to form.error. This thread got me 90% of the way there, but new FeedbackPanel("feedback", new *Container*FeedbackMessageFilter(myFo

Re: mvn jetty plugin not compatible with wicket

2010-03-04 Thread Jim Pinkham
This works for me, although if anyone can think of a better way to get the filtered version of jetty-xml during mvn jetty:run, that would be cool - seems a bit odd the way I've got it now: false src/main/resources true src/main/java ** **/*

Re: Multiple Copies of One Wicket App

2010-02-25 Thread Jim Pinkham
I have a follow-up question related to this. My current setup is simply myclient.war with my web.xml having one filter-name and one filter-mapping with url-pattern /* so my home page is myhost/myclient. Life is good, but now I'm growing! What I'd like to do is have separate versions of the app

Re: Handling Ajax session expired

2009-12-28 Thread Jim Pinkham
I think this suggestion is worth condsidering more carefully: >> Can you just achieve what you wan't making siloA, siloB, siloC been >> different "Wicket" applications? >No, that is not the proper solution. They are the same application. OK, but could you deploy multiple copies of the same app t

Re: Setup for stepping into wicket source in eclipse

2009-10-29 Thread Jim Pinkham
You may also want to check out JadClipse - it lets you step into de-complied-on-the-fly versions of source code from the jar/class files of any 3rd party tool. http://jadclipse.sourceforge.net/wiki/index.php/Main_Page Not as good as the fully commented source of course, but often good for a quick

Re: Highlight some words in the markup content

2009-10-19 Thread Jim Pinkham
that applies to the entire grid rather than any particular column, since I've got several PropertyColumn subclasses (LinkPropertyColumn, ImagePropertyColumn, NonEscapedHTMLPropertyColumn, ...etc). Hope this helps someone else. Thanks, -- Jim. On Fri, Oct 24, 2008 at 1:06 PM, Jim Pinkham

img tags from external src slow down my page

2009-07-02 Thread Jim Pinkham
Hi, I have an AjaxFallbackDefaultDataTable on the main page of my Wicket app with an image column like this: columns.add(new ImagePropertyColumn(new ResourceModel("imageURL"), "imageURL")); My item model has an imageURL string property backed by a database column, and it pretty much work

Re: OT: JavaOne

2009-05-18 Thread Jim Pinkham
both and time, and maybe I'll find you? Jim Pinkham Sr. Developer, NetJets Services, Inc Board member First UU Church of Columbus OH Oh, and FYI, here's the Wicket App I did: http://firstuucolumbus.org/auction/?wicket:bookmarkablePage=:org.firstuucolumbus.auction.page.AboutPage<http://

Re: Google App Engine and Wicket

2009-05-11 Thread Jim Pinkham
I've followed with interest all the wicket on GAE threads I can, and these all seem to address necessary minor tweaks to get it set up, but the one big thing I haven't seen much discussion on is the BigTable storage system, since we wouldn't be able to use MySQL. Maybe that's the whole point for s

Re: Tomcat Publishing and Hot-Swapping with Wicket (solved)

2009-05-05 Thread Jim Pinkham
I often talk to myself - sometimes it's the most intelligent conversation I can find (really? so do I!) On Tue, May 5, 2009 at 7:23 AM, nino martinez wael < nino.martinez.w...@gmail.com> wrote: > I like these kind of monologs, I often do them myself also known as > parrot talks :) We both need

Re: serialVersionUID

2009-04-11 Thread Jim Pinkham
I'm suprised no one has mentioned the runtime cost of computing a default serialversionid which is avoided if a constant is supplied. I used to make it a habit for this reason. This thread made me curious if that was really true, so I googled a bit and found this article

Re: Can client cache pages effectively?

2009-04-09 Thread Jim Pinkham
ow thing to avoid google trap on that page. Could this actually be a legitimate use of otherwise dodgy IFRAME ? Sound like a good plan? Thanks, -- Jim. On Fri, Mar 27, 2009 at 1:56 PM, Jim Pinkham wrote: > Jeremy, > > Thanks for your thoughtful reply - Scenario is exactly right.

Re: How To Download Excel File?

2009-03-31 Thread Jim Pinkham
r save the html - no binary conversion to excel's file format is really needed - excel can read HTML just fine. So if you are just doing a simple tabular report like I'm doing here, this could be a good option for you. -- Jim Pinkham On Tue, Mar 31, 2009 at 12:58 PM, Luther Baker wrote

Re: Can client cache pages effectively?

2009-03-27 Thread Jim Pinkham
server. Otherwise your > user > will likely not see much benefit unless you are sending multiple MB of data > back. Sounds like premature optimization to me. > > -- > Jeremy Thomerson > http://www.wickettraining.com > > > > On Thu, Mar 26, 2009 at 5:26 PM, Jim Pink

Re: Can client cache pages effectively?

2009-03-26 Thread Jim Pinkham
caching proxy like > http://www.squid-cache.org/ ? > > > -- > Jeremy Thomerson > http://www.wickettraining.com > > > > On Thu, Mar 26, 2009 at 2:02 PM, Jim Pinkham wrote: > > > Changing my search query to this got some better hits: > > http://lmgtfy.com/?q=c

Re: Can client cache pages effectively?

2009-03-26 Thread Jim Pinkham
wicket home page be a redirect to that file, or something like that? Thanks, -- Jim. On Thu, Mar 26, 2009 at 12:53 PM, Jim Pinkham wrote: > I've found a few posts about how to mark dynamic pages so they won't be > cached. > > I've got a different situation that I think i

Can client cache pages effectively?

2009-03-26 Thread Jim Pinkham
I've found a few posts about how to mark dynamic pages so they won't be cached. I've got a different situation that I think is fairly common - the 'home' page of my app is effectively a (cheesr-like) catalog of items that changes infrequently. Users didn't like paging, so it's about 300 items in

Re: DataView vs ListView

2009-01-07 Thread Jim Pinkham
Also, in MySQL syntax, you've got stuff like this that gets you right to the page you want: sql = "Select ... whatever .."; sql += " limit " + query.getFrom() + ","+query.getCount(); Oracle and other variants have similar options - I agree conn pool probably makes most difference. -- Ji

Re: DownloadLink, BIRT report

2008-12-31 Thread Jim Pinkham
of literal data and formulas) I use web app to collect data, then word merge templates for reports. -- Jim Pinkham http://firstuucolumbus.org/auction On Wed, Dec 31, 2008 at 10:22 AM, newbieabc wrote: > The generation of the excel report. > I am really new to BIRT and wicket.. > I

Re: Round corners n' stuff? Possible Contribution?

2008-12-22 Thread Jim Pinkham
FYI - I was curious about that so I ran: http://browsershots.org/http://www.css3.info/preview/rounded-border/ -- Jim Pinkham On Mon, Dec 22, 2008 at 5:19 AM, Martijn Dashorst < martijn.dasho...@gmail.com> wrote: > On Mon, Dec 22, 2008 at 11:14 AM, Steve Swinsburg > wrote: >

Re: Getting Panel body content

2008-11-17 Thread Jim Pinkham
Jens, You could try using a Label instead and process the msg=getString("msgkey") in it's model. -- Jim. On Mon, Nov 17, 2008 at 4:34 AM, jensiator <[EMAIL PROTECTED]> wrote: > > Hi > I've created a Panel that I would like to act as a AjaxLink in the markup. > I > would like to be able to add a

Re: Why don't I get onSubmit() for my form?

2008-11-11 Thread Jim Pinkham
Thanks to all who helped find this - yes, it was failing to validate my input numeric "123.45". I came up with this fix in my application class: protected IConverterLocator newConverterLocator() { converterLocator.set(Double.class, new AbstractDecimalConverter() { private

Re: Why don't I get onSubmit() for my form?

2008-11-11 Thread Jim Pinkham
ng a RequiredTextField which > means that the form must have a value for that field, otherwise the form > processing lifecyle will be cut short - one of the consequences of failing > validation is that onSubmit() will not get called, onError() will. > > Regards - Cemal > http://www.

Why don't I get onSubmit() for my form?

2008-11-11 Thread Jim Pinkham
I can't figure out why my form's onSubmit isn't firing when I click my submit button. Can anyone see what I've done wrong? Here's the HTML: http://pastebin.com/m5b1440a0 Here's Java code: http://pastebin.com/m4a217d31 At line#114, onSubmit is not being called. I've tried lots of different thi

Re: Howto mark a FormComponent as invalid without having a feedbackmessage?

2008-11-11 Thread Jim Pinkham
Matt, Try using a CheckGroup - Jim. On Tue, Nov 11, 2008 at 5:50 AM, Matthias Keller <[EMAIL PROTECTED]>wrote: > Hi > > I'm using a custom FormValidator to validate a group of checkboxes. I want > to raise an error whenever none of the checkboxes is checked. > In the effect I must have all che

Re: Basic print.css question

2008-11-07 Thread Jim Pinkham
list is not inside a #footer and your #noprint is not an id but > a class. > > On Thu, 6 Nov 2008 19:55:37 -0500, "Jim Pinkham" <[EMAIL PROTECTED]> > said: > > Sorry this isn't so wicket specific, but I think I'm doing this media > > type >

Basic print.css question

2008-11-06 Thread Jim Pinkham
Home Page Auction Catalog Event Calendar My Statement Welcome Jim Pinkham yadda yadda yadda. For some reason, when I do print-preview, I'm still seeing the element and the last line

Re: Highlight some words in the markup content

2008-10-24 Thread Jim Pinkham
return m.replaceFirst("$0"); } } return txt; } @Override protected void onDetach() { super.onDetach(); text = null; searchWord = null; } } -- Jim Pinkham On Thu, Oct 16, 2008 at 3:24 PM, Thomas Singer <[EMAIL PROTECTED]>

Inmethod grid with more edit controls

2008-10-02 Thread Jim Pinkham
I'm just getting started with inmethod grid and loving what it does so far. Now I'd like some to use other input controls such as checkbox, radiobutton, datepicker, or ChoiceList. I see EditablePropertyColumn has newCellPanel I could override to return Panels with various input component types in

Re: Inmethod Grid with wicket 1.3

2008-10-01 Thread Jim Pinkham
itle you want to show. > > -Matej > > On Tue, Sep 30, 2008 at 6:11 PM, Jim Pinkham <[EMAIL PROTECTED]> wrote: > > Got that working. Now, since I'm using row selection to indicate > > deletion, and since I've disabled row multiselect (so rows get deleted

Re: Inmethod Grid with wicket 1.3

2008-09-30 Thread Jim Pinkham
CancelColumn >> - has anyone already done that? I'm thinking it would only be visible >> if editMode is false to share the same screen space with the ok/cancel >> icons. >> >> I suppose a blank line to add a new row at the end would be nice too, >> but I think I can f

Re: Inmethod Grid with wicket 1.3

2008-09-30 Thread Jim Pinkham
t would only be visible if editMode is false to share the same screen space with the ok/cancel icons. I suppose a blank line to add a new row at the end would be nice too, but I think I can figure that out myself... Thanks, -- Jim. On Mon, Sep 29, 2008 at 5:57 PM, Jim Pinkham <[EMAIL PROTECTED

Inmethod Grid with wicket 1.3

2008-09-29 Thread Jim Pinkham
I'd like to use inmethod grid in my charity auction project. I've got a slightly modified version of one of the grid-examples using DataGrid like so: DataGrid grid = new DefaultDataGrid("grid", AuctionApplication.get().getDao().getItems(getYear()), // re