Re: how to modify internal JavascriptResourceReference packaged with component

2013-02-15 Thread evan
or is there possibly some other way to use the existing class directly and just swap some alternate resource file in place of the default one? Thanks again, -Evan Francois Meillet wrote > Hi Evan, > > try this > > private static final ResourceReference YO

Re: how to modify internal JavascriptResourceReference packaged with component

2013-02-15 Thread evan
given what I want to do. Thanks for the help! Francois Meillet wrote > Le 15 févr. 2013 à 16:48, evan < > evan@ > > a écrit : > >> Hi Francois, >> >> Thanks, but actually this still has issues. At first I thought it was >> clearly the simple thing I

Re: how to modify internal JavascriptResourceReference packaged with component

2013-02-18 Thread evan
e the constructors in which they are defined, and any other methods in which they are referenced. Were you saying in your last response that this is not necessary, for some reason that I'm still missing? In any case, doing it this way works and is fine as a temporary solution

RE: how to modify internal JavascriptResourceReference packaged with component

2013-02-20 Thread evan
at it is a good compromise! And eventually, the resource replacement feature after upgrading to wicket 6 will be the ideal solution. Thanks for your patience and the help! -Evan From: Francois Meillet [via Apache Wicket] [mailto:ml-node+s1842946n4656525...@n4.nabble.com] Sent: Monday, Februar

Re: WicketNotSerializableException

2007-12-17 Thread Evan Chooly
it's the ApplicationContextFacade that can't be serialized. you'll need to mark this field as transient most likely. Now, if this is, as I suspect, a spring class for getting your dependencies, you'll have to refetch/recreate this context after deserialization. But if you're using spring you s

Re: Resizable and reorderable grid components

2008-01-10 Thread Evan Chooly
this is very cool to start. i'm working on a similar component. my biggest complaint is that it seems odd to me that commercial component demos are being hosted on wicket stuff. but that just might be me. Other than that, they look pretty sharp. On Jan 10, 2008 3:42 PM, Matej Knopp <[EMAIL PRO

Re: Resizable and reorderable grid components

2008-01-10 Thread Evan Chooly
Is that not the "official" website for the wicket stuff projects? Just kinda struck me as odd is all. On Jan 10, 2008 6:26 PM, Igor Vaynberg <[EMAIL PROTECTED]> wrote: > dont really see this as that weird. its a private server... > > -igor > > > --

Re: Resizable and reorderable grid components

2008-01-12 Thread Evan Chooly
see > > the value of wicketstuff.org/marketplace for such components, > > commercial or not its still stuff for wicket > > > > > > On 1/11/08, Evan Chooly <[EMAIL PROTECTED]> wrote: > > > Is that not the "official" website for the wicket stuff

Re: Resizable and reorderable grid components

2008-01-12 Thread Evan Chooly
vanilla components on the examples page might have made the conversations easier. On Jan 12, 2008 7:25 PM, Igor Vaynberg <[EMAIL PROTECTED]> wrote: > On Jan 12, 2008 12:50 PM, Evan Chooly <[EMAIL PROTECTED]> wrote: > > I know what I was trying to convince my current compan

Re: Resizable and reorderable grid components

2008-01-13 Thread Evan Chooly
weather > widget? > > -igor > > > On Jan 12, 2008 7:57 PM, Evan Chooly <[EMAIL PROTECTED]> wrote: > > No, not really. I knew about and used that page. But one of the > questions > > that came up was about prebuilt components and the like. We used a > nu

Re: How to create a PDF file - NotSerializableException

2008-01-15 Thread Evan Chooly
You should probably look into using Resources. the wicketcontrib-jasperreports has this done for you already. On Jan 15, 2008 12:01 PM, Marco Aurélio Silva <[EMAIL PROTECTED]> wrote: > Hi > > I'm trying to create a PDF file with Jasper inside a page with wicket > 1.2.6, but I'm getting an except

Re: best practice for a wait page

2008-01-24 Thread Evan Chooly
What about IndicatingAjaxButton? On Jan 24, 2008 1:16 PM, Scott Swank <[EMAIL PROTECTED]> wrote: > I'll try Thijs' suggestion first, but if the unforseen arises I might > try a meta refresh. Thank Nick. > > On Jan 24, 2008 9:48 AM, Nick Heudecker <[EMAIL PROTECTED]> wrote: > > You could set a fl

Re: How to set wicket's locale?

2007-09-06 Thread Evan Chooly
T-37 minutes until sushi time! On 9/6/07, Igor Vaynberg <[EMAIL PROTECTED]> wrote: > > sushi > > > -igor > > > On 9/6/07, Martijn Dashorst <[EMAIL PROTECTED]> wrote: > > > > new PropertyModel(Page.this, "session.foo.sushi.bar"); > > > > ? > > > > > > On 9/6/07, Gabor Szokoli <[EMAIL PROTE

Re: First Day Disgust!

2007-09-09 Thread Evan Chooly
I know i'm a little late on this thread, but as the author of qwicket, i take particular issue with saying because it's "glued with hibernate and spring" that it's no good. The express purpose of qwicket is to create a template for spring/hibernate/wicket based applications. So if it's no good be

Re: First Day Disgust!

2007-09-11 Thread Evan Chooly
You could also look at how qwicket uses ant+maven tasks to build a system. The maven tasks handle downloading dependencies and ant does everything else. I know there's still that dependency on maven libs but it's just for the dependencies. And that's still miles ahead of using to manage dependen

Re: Ajax - Long process indicator ?

2007-09-13 Thread Evan Chooly
We're using matej's modal window to do just that. Works quite well. On 9/13/07, Erik van Oosten <[EMAIL PROTECTED]> wrote: > > Besides showing a progress indicator, you could also disable mouse > interaction by overlaying a div that has the height and width of the > entire page. > > Add a bit of

FilterToolbar

2007-09-20 Thread Evan Chooly
Apparently the API between beta3 and the latest SNAPSHOT changed for FilterToolbar and now it needs a FilterForm. I can't find any examples (not even unit tests) that show how I should build my page/table with this new API. Does anyone have an example working with the latest code? Thanks.

Re: Passing Parameters to Bookmarkable Page

2007-09-20 Thread Evan Chooly
Put the Filter ID in the map. On 9/18/07, Flavius <[EMAIL PROTECTED]> wrote: > > > I have two pages, a list page and a detail. The list page > can take a filter parameter, or has a default one if one > is not passed (making it bookmarkable). When the user > clicks to go to the detail page, I wan

Re: Passing Parameters to Bookmarkable Page

2007-09-20 Thread Evan Chooly
gt; > Thinking out loud, it seems like if there were parameters that were > "bookmarkable" (e.g. included in the built url), and others > that were not (passed along, but not part of the generated url). > > Maybe that's something that could be done on a custom RequestCycle.

body onload contribution

2007-10-08 Thread Evan Chooly
I used the following in my page constructor, but I'm not seeing the change in the HTML. What am I missing? add(new BodyTagAttributeModifier("onload", true, new Model("foo()"), this));

Re: body onload contribution

2007-10-08 Thread Evan Chooly
do this. Just use > renderOnLoad/renderOnDomReady javascript on IHeaderResponse. > > -Matej > > On 10/8/07, Evan Chooly <[EMAIL PROTECTED]> wrote: > > I used the following in my page constructor, but I'm not seeing the > change > > in the HTML. What am I mis

Re: DataTable FilterToolbar Shifted After AJAX Call

2007-10-11 Thread Evan Chooly
What version of wicket are you using? I saw this with beta3 but later snapshots fixed it for me. So if you're not on a recent snapshot, you might consider trying that and seeing if that helps. On 10/10/07, UPBrandon <[EMAIL PROTECTED]> wrote: > > > I am working on a project that has a DataTable

Re: spring acegi injection question

2007-10-22 Thread Evan Chooly
You can do this: InjectorHolder.getInjector().inject(this); You need to do it in init(), though. The constructor is too early for the injector to be configured. Other than that, you can @SpringBean any bean you want. otherwise spring wouldn't be able to inject the bean - this is differ

Back button and AjaxLazyLoadPanel

2007-10-25 Thread Evan Chooly
I'm having issues using the ALLP and the back button. I'm getting the following error: java.lang.IllegalStateException: No behavior listener found with behaviorId 0; Component: [MarkupContainer [Component id = content, page = WorkflowPage, path = 7:content:content.WorkflowUsersListPanel, isVisibl

Re: Multiple tags on a single base page?

2007-11-06 Thread Evan Chooly
In our app we have a ListView into which we can dump panels for, in our case, various different filtering options depending on the page. The base page keeps a List and that's used as the model for the ListView. If the subclass doesn't add anything, nothing shows up. But the pages that need them ca

Re: JPA best-practices?

2007-11-10 Thread Evan Chooly
There's also qwicket.sf.net that specifically uses JPA+spring. I'm finishing up updates now for 1.3 support and improved project setup. SVN is your best bet there but I'm hoping to put up the new version this weekend. On Nov 9, 2007 10:04 AM, Francis De Brabandere <[EMAIL PROTECTED]> wrote: > You

Re: JPA best-practices?

2007-11-12 Thread Evan Chooly
y plans on making a maven2 archetype for qwicket? > > Evan Chooly wrote: > > There's also qwicket.sf.net that specifically uses JPA+spring. I'm > > finishing up updates now for 1.3 support and improved project setup. > > SVN is your best bet there but I'm hop

Re: Problem with DefaultDataTable filtering?

2007-11-13 Thread Evan Chooly
bwahahahahaha. ahem. To each his own, I suppose. On Nov 13, 2007 12:26 AM, Eelco Hillenius <[EMAIL PROTECTED]> wrote: > On Nov 12, 2007 6:33 PM, anita nichols <[EMAIL PROTECTED]> wrote: > > Please unsubscribe > > Nah. Nick is a good guy. Let's keep him around ;-) > > Eelco > > --

data tables and debugging session serialization

2007-11-13 Thread Evan Chooly
I'm having some strange behavior with a DataTable and the back button. When I back up to the page with the DT, it rerenders fine, but all my object state is gone. I click a link and the object is there but not the ID in the the object so that I get hibernate errors trying to load without an ID.

more back button fun

2007-11-14 Thread Evan Chooly
Using rc1 when I click on a link in a DataView, click the back button, and click on another link I get the following stack trace. Now, this data view is populated after an ajax update from another link on the page which might contribute to the problem. Any ideas what the story is? WicketMessage:

only 1 version of page in the cache at a time?

2007-11-27 Thread Evan Chooly
We have a page that presents a report in which we can "drill down" into the data. When this happens, we setResponsePage() back to a new instance of the page with some different parameters and that all works dandy. But when we hit the back button, it seems the old version is gone. All the model d

Re: only 1 version of page in the cache at a time?

2007-11-27 Thread Evan Chooly
your data again in the objects. > > So what is suddenly null? All the transient fields? Why aren't those > reloaded > from a database or something? > > johan > > > > On Nov 27, 2007 5:01 PM, Evan Chooly <[EMAIL PROTECTED]> wrote: > > > We have a page tha

Re: only 1 version of page in the cache at a time?

2007-11-27 Thread Evan Chooly
rialize all the collections come back as empty > standard jdk collections instead of hibernate proxies sometimes > > -igor > > > On Nov 27, 2007 8:49 AM, Evan Chooly <[EMAIL PROTECTED]> wrote: > > No transient fields. Everything is serializable. We're storing the

Re: only 1 version of page in the cache at a time?

2007-11-27 Thread Evan Chooly
just something like: setModel(new CompoundPropertyModel(report)); On Nov 27, 2007 1:04 PM, Igor Vaynberg <[EMAIL PROTECTED]> wrote: > ok, so the model is there, but the object inside it suddenly is null? > what kind of model is it? > > -igor > > > On Nov 27, 2007 9

Re: only 1 version of page in the cache at a time?

2007-11-27 Thread Evan Chooly
Just about every field in my model object. Though it would appear that the date object(s) is set to "now." On Nov 27, 2007 2:23 PM, Johan Compagner <[EMAIL PROTECTED]> wrote: > But what field is then exactly null??? > > > > On Nov 27, 2007 7:05 PM, Evan C

Re: only 1 version of page in the cache at a time?

2007-11-27 Thread Evan Chooly
AIL PROTECTED]> wrote: > what is this report object? > > -igor > > > On Nov 27, 2007 11:27 AM, Evan Chooly <[EMAIL PROTECTED]> wrote: > > Just about every field in my model object. Though it would appear that > the > > date object(s) is set to "now.&q

Re: only 1 version of page in the cache at a time?

2007-11-27 Thread Evan Chooly
a place i can focus on without having to worry about all the other wicket layers. I'll let you know what I find out. On Nov 27, 2007 2:36 PM, Igor Vaynberg <[EMAIL PROTECTED]> wrote: > run it through Objects.clone() and see what you get back > > -igor > > > On Nov

Today's installment of "well, duh." Was: Re: only 1 version of page in the cache at a time?

2007-11-27 Thread Evan Chooly
or me and a big thanks to igor for pointing me to the Objects.cloneObject() method to help write unit tests to highlight my otherwise obvious error. On Nov 27, 2007 5:29 PM, Evan Chooly <[EMAIL PROTECTED]> wrote: > Thanks for the tip, igor. i wasn't sure how to get at the serializ

Re: Today's installment of "well, duh." Was: Re: only 1 version of page in the cache at a time?

2007-11-27 Thread Evan Chooly
I actually *do* have that, but this code recently went through some ... surgery that left things in a rather sloppy state. Clearly not the most prize worthy section of code. :) On Nov 27, 2007 10:43 PM, Timo Rantalaiho <[EMAIL PROTECTED]> wrote: > On Tue, 27 Nov 2007, Evan Chooly wrot

Re: Is wicket-contrib-jasperreports alive?

2007-11-30 Thread Evan Chooly
The project lives in svn in the wicket-stuff repo. Last I worked with it, I had started migrating it to wicket 1.3 but that was back when there was a wicket 2.0 in the works. It should still be compatible with today's 1.3 but I haven't touched it in months as I haven't had to use JR in sometime.

AjaxLazyLoadPanel updates serialized?

2007-07-31 Thread Evan Chooly
When trying to use two different lazy loaded panels i noticed that they appear to be serialized. The current implements uses a AbstractDefaultAjaxBehavior to create the call back to lazy load the actual content. But these calls appear to be serialized in a page. Would it make more sense to use a

Re: AjaxLazyLoadPanel updates serialized?

2007-07-31 Thread Evan Chooly
On 7/31/07, Martijn Dashorst <[EMAIL PROTECTED]> wrote: > > AFAIUI the serialization already occurs on the server: the session > will be locked while you retrieve the panel contents. The client's > single request channel makes the congestion on the server less (less > threads waiting for access to

Re: QWicket - Getting started

2007-08-01 Thread Evan Chooly
On 8/1/07, [EMAIL PROTECTED] < [EMAIL PROTECTED]> wrote: > > Hi > > I am new to Wicket and am trying to get started with QWicket. I am getting > the following errors: > > 1. Cannot fin symbol class ISessionFactory > 2. Cannot find symbol class PreparedContextPathHandler > > Can anyone help please.

Re: wicket-spring Javadoc

2007-08-06 Thread Evan Chooly
> > Could somebody please point me to the location of the javadoc/api for the > wicket.spring package? http://wicketstuff.org/maven/repository/org/apache/wicket/wicket-spring/1.3.0-SNAPSHOT/wicket-spring-1.3.0-SNAPSHOT-javadoc.jar

Re: Reacting to DateField change

2007-08-09 Thread Evan Chooly
Don't you need to setOutputMarkupId(true) as well on the component? On 8/9/07, Federico Fanton <[EMAIL PROTECTED]> wrote: > > On Thu, 9 Aug 2007 14:10:58 +0100 > "Dipu Seminlal" <[EMAIL PROTECTED]> wrote: > > > Did you add onchange in the markup as well, you need to add it in the > markup > > as w

Re: Can we do straight print in a java web application?

2007-08-20 Thread Evan Chooly
There's an onLoad event on a PDF (sounds vaguely familiar) in which you can initiate a print. I've done this on previous projects and works just fine. I can't recall if I autoclosed that PDF as well but it seems likely. On 8/20/07, hillj2 <[EMAIL PROTECTED]> wrote: > > > Actually, this is availab

Re: where can i find wicket jasperreport integration project?

2007-08-29 Thread Evan Chooly
Let me know if you have any questions about that. I haven't used JR in a while so I haven't updated that project. If you run into issues, I can take a look, though. On 8/28/07, aozster <[EMAIL PROTECTED]> wrote: > > > Thank you , igor. > > igor.vaynberg wrote: > > > > > http://wicket-stuff.svn.s

Re: Updating Panels with AjaxLazyLoadingPanel

2007-08-29 Thread Evan Chooly
Why not just use the AjaxLazyLoadingPanel? I'm currently using it and my lazy loaded component is updated via AJAX. So, page comes up, ALLP loads the report panel which can take a few seconds. Then I have an AJAX submitted form that updates the filters for the report and refreshes that table usi

Re: How to integrate wicket frame work with spring

2007-08-31 Thread Evan Chooly
You can also look at qwicket.sf.net for some ideas on integrating spring and wicket. It's a little out of date atm but the ideas are the same either way On 8/30/07, bhupat parmar <[EMAIL PROTECTED]> wrote: > > hi > i need help in integrating wicket frame work with spring frame .i am using > direc

wicket:container beta3 and post snapshots

2007-08-31 Thread Evan Chooly
I suddenly started getting errors using wicket:container saying it failed to handle it. Is anyone else seeing this or is my env just really busted?

Re: Urgent : how can i design get all input of a single form with TextField, ListMultiplechoice and FileUpload components

2007-08-31 Thread Evan Chooly
There's an example in the examples for doing FileUpload. http://www.wicketstuff.org/wicket13/upload/single On 8/30/07, bhupat parmar <[EMAIL PROTECTED]> wrote: > > Hi, > Anyone please guide me to fit upload example in Forminput example, > my requirement is i want a develop > > a single form with

continueToOriginalDestination seems to be incorrectly retaining destination across multiple logins

2012-02-08 Thread Evan Sable
properly replaced with the new protected destination which redirects back to the intercept page. The problem is only if I click directly to the login page without a new intercept, but after having previously utilized the continueToOriginalDestination in the prior login. Thanks very much for any help! -Evan

RE: continueToOriginalDestination seems to be incorrectly retaining destination across multiple logins

2012-02-15 Thread Evan Sable
project (see https://github.com/55minutes/fiftyfive-wicket#readme) that pretty much sets up the wicket/shiro integration for me. Does it sound like the problem is most likely coming from there, or might something else be going on? Thanks again, -Evan -Original Message- From: Martin Gri

RE: Wicket jQuery Validator integration

2012-02-29 Thread Evan Sable
have done using wiquery. Have you had a chance to post this somewhere? Thanks, -Evan -Original Message- From: Zachary Bedell [mailto:zacl...@thebedells.org] Sent: Wednesday, February 15, 2012 10:52 AM To: users@wicket.apache.org Subject: Wicket jQuery Validator integration Good morning

RE: AjaxFormComponentUpdatingBehavior after validation problem

2012-03-18 Thread Evan Sable
.addComponent(get("formId")); Hope that helps, -Evan -Original Message- From: Gytis [mailto:lietuvis...@mail.ru] Sent: Friday, March 16, 2012 5:32 AM To: users@wicket.apache.org Subject: AjaxFormComponentUpdatingBehavior after validation problem Hello, I have such a problem wi

how to modify internal JavascriptResourceReference packaged with component

2013-02-13 Thread Evan Sable
see how I'd do this, but maybe I'm missing something obvious. Or maybe is there some way to keep using the same class but to tell the application that I want to replace the corresponding javascript file with my own? Or is there some other approach I should be taking when this type of issue comes up? Thanks very much for any advice, -Evan