[Wicket-user] ajax autocomplete text field

2005-08-22 Thread Ryan Sonnek
. Let me know if there's someway to get this discussion started! Thanks for the great framework, and for making web development fun again. Not sure if this is the appropriate list for this discussion, or if this should be carried on to the developers list. Ryan Sonnek smime.p7s

RE: [Wicket-user] ajax autocomplete text field

2005-08-23 Thread Ryan Sonnek
is perfectly suited for the userlist. Technical discussions are preferred in the development list. Martijn Ryan Sonnek wrote: Hey Wicket users and developers, I dug into the experimental ajax support in wicket this weekend and was able to create an auto complete text field very

Re: [Wicket-user] new autocomplete components

2005-09-05 Thread Ryan Sonnek
the component's model (thus you won't need the input arg), and it would be more consistent with the rest of Wicket. Otoh, the current API is very focussed, which is a good thing too. Keep up the good stuff! Eelco On 9/4/05, Ryan Sonnek [EMAIL PROTECTED] wrote: Hey Wicket AJAX developers, I just

[Wicket-user] scriptaculous draggable components

2005-09-23 Thread Ryan Sonnek
I just committed a slew of changes to wicket-stuff, and have added a working example of how to use the new drag/drop scriptaculous components. I would appreciate any feedback from people out there. I'm sure there are some documentation things that can be done to make it a bit easier to use, but

Re: [Wicket-user] DOJO and AutoComplete / Populate on textfield

2005-09-26 Thread Ryan Sonnek
Yep, I've been working with scriptaculous. I haven't worked much with dojo to know how good it is, but scriptaculous has been great to work with. On 9/25/05, Martijn Dashorst [EMAIL PROTECTED] wrote: Not (yet) with Dojo I believe, the scriptaculous components have been created by Ryan Sonnek

Re: [Wicket-user] DOJO and AutoComplete / Populate on textfield

2005-09-26 Thread Ryan Sonnek
. Thanks! On Sep 26, 2005, at 4:55 AM, Ryan Sonnek wrote: Yep, I've been working with scriptaculous. I haven't worked much with dojo to know how good it is, but scriptaculous has been great to work with. On 9/25/05, Martijn Dashorst [EMAIL PROTECTED] wrote: Not (yet) with Dojo I

Re: [Wicket-user] page class aliases

2005-10-09 Thread Ryan Sonnek
I think this would be an excellent feature for the spring integration project to key off of. The page aliases could be directly tied to the name of the spring page bean. On 10/9/05, Juergen Donnerstag [EMAIL PROTECTED] wrote: I didn't know this feature exists and was wondering how many users

Re: [Wicket-user] Wicket stuff status

2005-10-14 Thread Ryan Sonnek
The scriptaculous examples don't build as a webapp. There's an integrated launcher that launches jetty and hosts the example webapp. If you have any problems getting this to work, let me know. Ryan On 10/14/05, Eduardo Rocha [EMAIL PROTECTED] wrote: I forgot to see the Wiki, nice that we can

Re: [Wicket-user] My take on Spring integration

2005-10-23 Thread Ryan Sonnek
I agree. Without taking the extra step to create a Spring web page factory, this solution is still missing something. I took some time a while ago and put together a spring web page factory that would inject the spring services directly into the page. It wasn't too difficult, and i definately

Re: [Wicket-user] My take on Spring integration

2005-10-25 Thread Ryan Sonnek
Is the annotation really necessary? can't you use spring's injection by type? There will only be one HelloWorldService defined in the spring configuration. On 10/25/05, Stefan Arentz [EMAIL PROTECTED] wrote: On Oct 25, 2005, at 11:58 AM, Johan Compagner wrote: if you want to create youre

Re: [Wicket-user] My take on Spring integration

2005-10-26 Thread Ryan Sonnek
My take on spring integration is that it should only work if you use the web page factory. If you instantiate the pages directly using a custom constructor, you should be expected to pass in the needed service. This follows the Good Citizen Pattern (http://www.picocontainer.org/Good+Citizen) and

Re: [Wicket-user] SiteMesh and Wicket are compatible?

2005-10-26 Thread Ryan Sonnek
One potential issue of integrating the two is if you try to display link in the sitemesh layout to wicket pages. How in the world could sitemesh generate the wicket url? I highly suggest using the built in border or markup inheritance support. On 10/26/05, Juergen Donnerstag [EMAIL PROTECTED]

Re: Re: [Wicket-user] My take on Spring integration

2005-11-11 Thread Ryan Sonnek
I would be very interested in a 1.4 port of this. Do you think it could use the same annotation based approach, but using Qdox to process instead of the built in 1.5 annotation functionality? On 11/11/05, Christian Essl [EMAIL PROTECTED] wrote: The code realy looks good. Concerning the Proxy.

Re: [Wicket-user] How to cover Select Box with the autocomplete DIV layer

2005-11-22 Thread Ryan Sonnek
I updated to rc4 a while back, and now that rc5 is out, we should do another update. can you file an issue to get some visibility on this? I'll probably tackle the upgrade, unless someone else wants to hop in and get it done. It might take me a couple days before I can get this in. On

Re: [Wicket-user] CustomLayoutAjaxAutocompleteTextField

2006-03-03 Thread Ryan Sonnek
I wrote that autocomplete compoinent, and it's not too fancy. if you have a different usecase, i suggest writing your own component for what you need it to do. scriptaculous makes the ajax stuff pretty easy, and wicket makes the rest a snap. On 3/3/06, Mats Norén [EMAIL PROTECTED] wrote: Hi,

[Wicket-user] previewable pages

2006-03-03 Thread Ryan Sonnek
One of my favorite features in wicket is that the pages are completely previewable in a normal web browser even outside of wicket. JSP is simply a mess of nested scriptlets and xml and other junk. That being said, I was getting frustrated that I would lose previewable pages when I start

Re: [Wicket-user] previewable pages

2006-03-04 Thread Ryan Sonnek
adding some css to identify the div as an include isn't a bad idea! On 3/4/06, Mark Derricutt [EMAIL PROTECTED] wrote: On 3/4/06, Ryan Sonnek [EMAIL PROTECTED] wrote: Well, I'd like to startup a discussion on a wicket feature I wrote up and see if there's any interest for other people

Re: [Wicket-user] previewable pages

2006-03-05 Thread Ryan Sonnek
levels are a big deal though, otherwise you'll end up with just a half baked thing. What kind of support within Wicket itself were you thinking off? And could it be useful for the WicketBench Eclipse plugin? Eelco On 3/3/06, Ryan Sonnek [EMAIL PROTECTED] wrote: One of my favorite features

Re: [Wicket-user] TextField and trimming blanks at end (and maybe at beginning)

2006-03-07 Thread Ryan Sonnek
+1 for this solution. this seems to be the cleanest implementation to me and puts the responsibility on the developer to *use* the correct component. On 3/7/06, Igor Vaynberg [EMAIL PROTECTED] wrote: i guess thats true. you can create a subclass TrimmingTextField that overrides getInput() and

[Wicket-user] wicket:preview feature

2006-03-14 Thread Ryan Sonnek
I've updated the wicket:preview feature with new functionality. I think it pretty much covers the use cases people have provided, and I would like to work with the wicket developers to integrate this (if it's still wanted). main selling points * uses html and ajax to dynamically include

Re: [Wicket-user] wicket:preview feature

2006-03-14 Thread Ryan Sonnek
. What do you want me to do? Juergen On 3/14/06, Ryan Sonnek [EMAIL PROTECTED] wrote: I've updated the wicket:preview feature with new functionality. I think it pretty much covers the use cases people have provided, and I would like to work with the wicket developers to integrate

Re: [Wicket-user] wicket:preview feature

2006-03-14 Thread Ryan Sonnek
that are working on IDE support might want to support out of the box. Laughing Panda dudes, Geert, you reading with us? Eelco On 3/14/06, Juergen Donnerstag [EMAIL PROTECTED] wrote: On 3/14/06, Ryan Sonnek [EMAIL PROTECTED] wrote: I think that's a good question. What would be the best way

Re: [Wicket-user] wicket:preview feature

2006-03-15 Thread Ryan Sonnek
already at my blog. I don't object to someone putting it up on the wiki for consistent documentation though... On 3/15/06, Gili [EMAIL PROTECTED] wrote: Any chance you cam write up a short Wiki entry on how to use it? Gili Ryan Sonnek wrote: Do you need anything else from my side

Re: [Wicket-user] wicket:preview feature

2006-03-15 Thread Ryan Sonnek
Woo Hoo! Thanks Juergen! On 3/15/06, Juergen Donnerstag [EMAIL PROTECTED] wrote: I just committed your example to wicket-example Juergen --- This SF.Net email is sponsored by xPML, a groundbreaking scripting language that extends

Re: [Wicket-user] wicket:preview feature

2006-03-19 Thread Ryan Sonnek
, this is something that the people that are working on IDE support might want to support out of the box. Laughing Panda dudes, Geert, you reading with us? Eelco On 3/14/06, Juergen Donnerstag [EMAIL PROTECTED] wrote: On 3/14/06, Ryan Sonnek [EMAIL PROTECTED] wrote: I think that's

Re: [Wicket-user] Dynamically updating a tree via Ajax?

2006-04-21 Thread Ryan Sonnek
didn't this end up getting created in the dojo components? I thought one of the interns started work on this... On 4/21/06, Igor Vaynberg [EMAIL PROTECTED] wrote: yep, we dont have one built yet. its a shame, but we are all very busy right now as you can see :) if you want something quick

Re: [Wicket-user] Any Free RSS Panel from Wicket Users

2006-05-23 Thread Ryan Sonnek
I'm also interested in a wicket RSS panel, but i'm finding it hard to understand the dojo example. personally, i think it would be easier to use a library like rome (https://rome.dev.java.net/) and just add each rss element to a wicket list view. it's really not that difficult to parse an

Re: [Wicket-user] Re: Rating component added to wicket 1.2 branch

2006-05-26 Thread Ryan Sonnek
This is too cool!the extensions is such a great playground to showcase what wicket can do. sure, it's easy enough with wicket to roll your own components, but the more suff that's available out of the box, the more likely users are to pick up and play with wicket. on that note, i'm still waiting

[Wicket-user] CSS background images

2006-07-23 Thread Ryan Sonnek
I know this is a pretty newbie question, but how can i package an image with my wicket app, and reference it within a static css file? I've been searching through the wicket wiki, with no luck. is there a wicket-stuff app or someplace i can dig through for an example? Just to be clear, here's

Re: [Wicket-user] [Spam] Re: CSS background images

2006-08-06 Thread Ryan Sonnek
I hope something like this will be included in wicket soon. I have an issue hard-coding the path in my css. Since I use wicket-bench for testing, my tests have a different servlet path than my actual application instance.On 8/1/06, cowwoc [EMAIL PROTECTED] wrote: Upon first glance, looks good ;)

Re: [Wicket-user] Wicket 2.0, when?

2006-08-25 Thread Ryan Sonnek
+1 for continuous integration publishing snapshot versions...On 8/25/06, Martijn Dashorst [EMAIL PROTECTED] wrote:Then I'll try to build one this weekend. Just a snapshot, no magic/wonders :-) MartijnOn 8/25/06, Stefan Lindner [EMAIL PROTECTED] wrote: But we could throw out a snapshot of 2.0 at

Re: [Wicket-user] AutoCompleteTextField

2006-08-30 Thread Ryan Sonnek
quickstrat??? =)On 8/30/06, Igor Vaynberg [EMAIL PROTECTED] wrote: looks like it stops recognizing the function signature. maybe it is related to the other bug someone reported where _javascript_ headers are contributed again and again after ajax updates - that would cause this. a quickstrat would

Re: [Wicket-user] Wicket 2, modal window, ListChoice, auto completion

2006-09-18 Thread Ryan Sonnek
+1 for versioned _javascript_. I am seeing more and more people suggest putting something like ?rand=132123 into their css/_javascript_/image urls to avoid this kind of caching.FYI: Ruby on Rails does this automatically for you... =) On 9/18/06, Martijn Dashorst [EMAIL PROTECTED] wrote: To prevent

Re: [Wicket-user] Wicket 2, modal window, ListChoice, auto completion

2006-09-18 Thread Ryan Sonnek
On 9/18/06, Igor Vaynberg [EMAIL PROTECTED] wrote: that will be very ugly, what about all the other resources?It depends on how it's implemented. there's no reason the version *needs* to be a part of the query string. The query string could just as well be something like:

Re: [Wicket-user] Wicket 2, modal window, ListChoice, auto completion

2006-09-18 Thread Ryan Sonnek
On 9/18/06, Igor Vaynberg [EMAIL PROTECTED] wrote: sure, but that means modifying how we resolve the resources. if you make it a queryparam we dont need to change anything but the part that creates the urlI'm not saying it'd be worth it, i'm just saying it's an option. -Igor On 9/18/06, Ryan

Re: [Wicket-user] Wicket 2, modal window, ListChoice, auto completion

2006-09-18 Thread Ryan Sonnek
Vaynberg [EMAIL PROTECTED] wrote: On 9/18/06, Ryan Sonnek [EMAIL PROTECTED] wrote: On 9/18/06, Igor Vaynberg [EMAIL PROTECTED] wrote: On 9/18/06, Ryan Sonnek [EMAIL PROTECTED] wrote: +1 for versioned _javascript_. I am seeing more and more people suggest putting something like ?rand=132123

Re: [Wicket-user] Wicket 2, modal window, ListChoice, auto completion

2006-09-18 Thread Ryan Sonnek
On 9/18/06, Eelco Hillenius [EMAIL PROTECTED] wrote: On 9/18/06, Ryan Sonnek [EMAIL PROTECTED] wrote: Ok.I'm done herethis is going nowhere, and I guarentee I'm not the only one out there that has run into this issue.It's too bad that this has turned into a mud slinging contest.The Rails team

Re: [Wicket-user] Wicket 2, modal window, ListChoice, auto completion

2006-09-18 Thread Ryan Sonnek
this is exactly why the file last modified time is the best solution. all these problems and complex usecases just go away. If i release my app every week, that means every week, users will probably be pulling down the _javascript_ and css again even if those files haven't changed. if other users

Re: [Wicket-user] Wicket 2, modal window, ListChoice, auto completion

2006-09-18 Thread Ryan Sonnek
Just so we're clear, i *never* suggested that _javascript_ and css be reloaded with each request. i just suggested using the random query param as a *possible* solution to get around these caching issues.the file last modified time is by far the most standard and correct solution. On 9/18/06, Igor

Re: [Wicket-user] Wicket arguments for big slow companies (Was:links about wicket scalability...)

2006-09-26 Thread Ryan Sonnek
Don't forget my *favorite* selling point of wicket...* NO XML!!!On 9/26/06, Marc-Andre Houle [EMAIL PROTECTED] wrote:I never liked HTML, PHP and everything related to GUI programming. Finding a Framework like Wicket that let me do all my trick in Java and never have to tweak html and CSS make me

[Wicket-user] Fwd: edit in place label

2006-10-05 Thread Ryan Sonnek
trying again. looks like the first email was blocked.-- Forwarded message --From: Ryan Sonnek [EMAIL PROTECTED]Date: Oct 2, 2006 10:44 AMSubject: edit in place labelTo: wicket-user@lists.sourceforge.netI'm trying to build out a new wicket component on top of the scriptaculous edit

[Wicket-user] edit in place label

2006-10-05 Thread Ryan Sonnek
I'm trying to build out a new wicket component on top of the scriptaculous edit in place label. The piece that's confusing me is how to submit this html form that was constructed outside of wicket. The in place editor takes a url parameter to post the data to. does anyone have a recommendation on

[Wicket-user] AJAX Edit In Place Label

2006-10-05 Thread Ryan Sonnek
Title: AJAX Edit In Place Label I'm having issues with the mailing list, so I hope this makes it through... I've just finished a first version of an Ajax Edit In Place Label.  This implementation uses scriptaculous and is similar to something found on flickr.  I've added it to the

[Wicket-user] ajax refresh component

2006-10-05 Thread Ryan Sonnek
I'm trying to use a link to refresh a component with new content. any documentation out there on this?here's a simple example to describe what i'm trying to do:list of links:--link to item1 link to item 2panel with detail info:info about selected item.

[Wicket-user] ajax request does not recreate component with changed model

2006-10-07 Thread Ryan Sonnek
I have a page with a local variable currentItem. I'm trying to use an ajax request to change that item and refresh a detail panel, but the component does not reflect the changes. AjaxLink link = new AjaxLink(selectItem) { public void onClick(AjaxRequestTarget target) { currentItem = item;

Re: [Wicket-user] ajax request does not recreate component with changed model

2006-10-07 Thread Ryan Sonnek
That worked great, thanks!!I had tried the property model approach, but it didn't work because I wasn't using the EnclosingClass as the modelObject On 10/7/06, Matej Knopp [EMAIL PROTECTED] wrote:Your problem is that you create label with constant modal, that is set to the value of

[Wicket-user] adding class to listview

2006-10-17 Thread Ryan Sonnek
I'm using a listview to output an ordered list. I would like to add a class to my li programatically. I don't see a way to do that using the ListView simple template:ol !-- want to add a class=foo to this li! -- li wicket:id=itemtext goes here/li /olcode:populateItem(Item item) { //how to add a

Re: [Wicket-user] who wants to be in charge of doing wicket-stuff releases

2006-11-21 Thread Ryan Sonnek
I thought it was up to the individual wicket-stuff projects to release themselves. I know that I'm going to be putting some major rework into the wicket-contrib-scriptaculous project here soon and I'm planning on performing snapshot and major releases to get them out into the public. On

Re: [Wicket-user] wicket stuff stuff

2006-11-21 Thread Ryan Sonnek
+1 for wicket-stuff using the main wicket wiki On 11/21/06, Eelco Hillenius [EMAIL PROTECTED] wrote: Let's let the new maintainers decide on that then :) I agree with Martijn that it might be nice to have everything in one WIKI - if that would be ok with Apache policy etc - though otoh, it

[Wicket-user] wicket-scriptaculous release

2006-12-11 Thread Ryan Sonnek
Hey wicket users, Just wanted to let everyone know I just released the first version of the wicket-contrib-scriptaculous project. It's based on wicket-2.0, so it might not work for everyone, but give it a try if your interested!

Re: [Wicket-user] wicket-scriptaculous release

2006-12-11 Thread Ryan Sonnek
I'll take some time to update the wiki with some info. That's a heck of a lot easier than updating the maven-site. =) On 12/11/06, Filippo Diotalevi [EMAIL PROTECTED] wrote: On 12/11/06, Ryan Sonnek [EMAIL PROTECTED] wrote: Hey wicket users, Just wanted to let everyone know I just

Re: [Wicket-user] wicket-scriptaculous release

2006-12-12 Thread Ryan Sonnek
in subversion as well ( http://wicket-stuff.svn.sourceforge.net/viewvc/wicket-stuff/trunk/wicket-contrib-scriptaculous-examples/ ). On 12/12/06, Andrew Klochkov [EMAIL PROTECTED] wrote: Ryan Sonnek wrote: Hey wicket users, Just wanted to let everyone know I just released the first version of the wicket

Re: [Wicket-user] wicket-scriptaculous release

2006-12-13 Thread Ryan Sonnek
It's just a snapshot release, and since there are wicket-2.0-SNAPSHOTreleases being published, this doesn't seem much different. On 12/13/06, Jean-Baptiste Quenot [EMAIL PROTECTED] wrote: * Ryan Sonnek: Thanks. I was mainly wondering if wicket-stuff had a maven repository. Something

Re: [Wicket-user] Why I recommended Wicket...

2006-12-14 Thread Ryan Sonnek
Other points of consideration is long term maintenance. A component oriented framework like Wicket encapsulates component functionality into a black box that can be used in many different contexts and still work as designed. The same effect is very difficult to achieve with custom tags

[Wicket-user] new SortableContainer Component

2006-12-15 Thread Ryan Sonnek
Hey wicket-users, I've written up a short tutorial on a new Wicket component (SortableContainer) that integrates scriptaculous into wicket for drag/drop reordering of ListView items. http://jroller.com/page/wireframe?entry=wicket_sortable_container I'd be very interested to hear any feedback

[Wicket-user] wicket-stuff svn issues

2006-12-18 Thread Ryan Sonnek
I know this isn't a core wicket issue, but is anyone else having issues with the wicket-stuff svn on sourceforge? I'm getting: 405 Method Not Allowed (https://svn.sourceforge.net) - Take Surveys. Earn Cash. Influence the

[Wicket-user] wicket-2.0 snapshots

2006-12-29 Thread Ryan Sonnek
the maven2 snapshots of wicket seems to be down. I've been using wicket-repository (http://maven.sateh.com/wicket/) for quite a while now. anyone else use that server or have an alternate? - Take Surveys. Earn Cash.

Re: [Wicket-user] wicket-2.0 snapshots

2006-12-29 Thread Ryan Sonnek
Does anyone know who runs the http://maven.sateh.com/wicket/ site? On 12/29/06, Igor Vaynberg [EMAIL PROTECTED] wrote: still waiting for johan to setup our dedicated wicket server to host them :) -igor On 12/29/06, Ryan Sonnek [EMAIL PROTECTED] wrote: the maven2 snapshots of wicket

[Wicket-user] page without markup file

2006-12-30 Thread Ryan Sonnek
I'm building an rss page similar to the one on the wiki ( http://cwiki.apache.org/WICKET/rss-page.html), but I'd like to have the rss library i'm using write out the rss instead of duplicating all the markup and components. Is it possible for a page to programatically write out to the stream

Re: [Wicket-user] page without markup file

2006-12-30 Thread Ryan Sonnek
As a followup, I was able to override the onRender() method to stream my content, but I still need an empty markup file or else wicket throws an exception. are any risks with going with this approach, and is there any way to get around the empty markup file? On 12/30/06, Ryan Sonnek [EMAIL

Re: [Wicket-user] page without markup file

2006-12-30 Thread Ryan Sonnek
=wicket_feedpage On 12/30/06, Ryan Sonnek [EMAIL PROTECTED] wrote: As a followup, I was able to override the onRender() method to stream my content, but I still need an empty markup file or else wicket throws an exception. are any risks with going with this approach, and is there any way to get around

Re: [Wicket-user] page without markup file

2006-12-30 Thread Ryan Sonnek
link/shared resource if you want mounting. -igor On 12/30/06, Ryan Sonnek [EMAIL PROTECTED] wrote: I'm building an rss page similar to the one on the wiki (http://cwiki.apache.org/WICKET/rss-page.html ), but I'd like to have the rss library i'm using write out the rss instead of duplicating

[Wicket-user] AbstractStringResourceStream content type bug

2007-01-05 Thread Ryan Sonnek
I'm building a class that implements the IMarkupResourceStreamProvidor interface and I'm using the AbstractStringResourceStream like so: public IResourceStream getMarkupResourceStream(MarkupContainer container, Class? extends MarkupContainer containerClass) { final String

Re: [Wicket-user] Problem using JavaScriptReference

2007-01-08 Thread Ryan Sonnek
I wish some of these shortcuts made it up on the wiki. the majority of users start from existing example code, which is usually the hard way. On 1/7/07, Eelco Hillenius [EMAIL PROTECTED] wrote: Use new JavaScriptReference(myJs, scripts/myjs.js); btw, you don't really need the wicket:head

[Wicket-user] confusing AjaxFallbackLink API

2007-01-08 Thread Ryan Sonnek
Although I'm not a committer, I'd like to open RFE for an API change, and I'd like to get feedback from the devs. Here's my complaint. When I'm using an AjaxFallbackLink, I'm making an explicit decision that I want to handle ajax and non-ajax requests in different ways. The problem is that

Re: [Wicket-user] confusing AjaxFallbackLink API

2007-01-08 Thread Ryan Sonnek
methods? -igor On 1/8/07, Ryan Sonnek [EMAIL PROTECTED] wrote: Although I'm not a committer, I'd like to open RFE for an API change, and I'd like to get feedback from the devs. Here's my complaint. When I'm using an AjaxFallbackLink, I'm making an explicit decision that I want to handle ajax

Re: [Wicket-user] Jar for wicket-contrib-scriptaculous?

2007-01-08 Thread Ryan Sonnek
I have a jar ready and available for the wicket-scriptaculous project. http://jroller.com/page/wireframe/?anchor=wicket_scriptaculous_0_1_1 Unfortunately, all my projects are using wicket-2.0 so that's what the scriptaculous project has been built against. if anyone out there wants to maintain

Re: [Wicket-user] Jar for wicket-contrib-scriptaculous?

2007-01-09 Thread Ryan Sonnek
I'd love to try and use the main wicket confluence instance in some way. seriously, i haven't even been able to create an account and login to the wiki for wicket-stuff. On 1/9/07, Filippo Diotalevi [EMAIL PROTECTED] wrote: On 1/9/07, Korbinian Bachl [EMAIL PROTECTED] wrote: the current seems

Re: [Wicket-user] Wicket-stuff site (Was: Re: Jar forwicket-contrib-scriptaculous?)

2007-01-11 Thread Ryan Sonnek
I just signed up as well (wireframe). should we create a separate space for each wicket-stuff project? I think that confluence works the best using spaces instead of child pages to segregate info. On 1/11/07, Filippo Diotalevi [EMAIL PROTECTED] wrote: On 1/11/07, James McLaughlin [EMAIL

Re: [Wicket-user] Wicket-stuff site (Was: Re: Jar forwicket-contrib-scriptaculous?)

2007-01-11 Thread Ryan Sonnek
+1 for space per project I'll take the scripaculous project documentation lead. On 1/11/07, Igor Vaynberg [EMAIL PROTECTED] wrote: you guys need to first decide how you want to organize confluence. space per project? one wiki, one website? who has admin to what? after a consensus has been

[Wicket-user] wicket-2.0 - ajax page expired exceptions

2007-01-16 Thread Ryan Sonnek
I'm running wicket-2.0 from a recent svn checkout and i'm seeing a *lot* of page expired exceptions when using ajax behaviors. I'm wondering where I can start digging to see why this is happening. Any ideas? - Take Surveys.

Re: [Wicket-user] wicket-2.0 - ajax page expired exceptions

2007-01-17 Thread Ryan Sonnek
start is to isolate this in a quickstart so we can all look at it. if you want to do it yourself then just break in request cycle and walk the steps, see why the page cannot be resolved. -igor On 1/16/07, *Ryan Sonnek* [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] wrote: I'm running

Re: [Wicket-user] wicket-2.0 - ajax page expired exceptions

2007-01-17 Thread Ryan Sonnek
Done! https://issues.apache.org/jira/browse/WICKET-216 On 1/17/07, Igor Vaynberg [EMAIL PROTECTED] wrote: dont think so but feel free to open one -igor On 1/17/07, Ryan Sonnek [EMAIL PROTECTED] wrote: Thanks for the update. is there a JIRA issue that I can watch for when

Re: [Wicket-user] wicket-2.0 - ajax page expired exceptions

2007-01-21 Thread Ryan Sonnek
As a followup question Until this bug has been fixed, is there a way to disable page versioning all-together? My app is very ajax heavy, so it's bordering on unusable until this is fixed. On 1/17/07, Ryan Sonnek [EMAIL PROTECTED] wrote: Done! https://issues.apache.org/jira/browse/WICKET

Re: [Wicket-user] 1.3/2.0 Snapshots?

2007-02-09 Thread Ryan Sonnek
i can't wait for 2.0 snapshots! =) would it be worthwhile for me to open a JIRA issue to monitor when snapshots for 2.0 start getting published? On 2/9/07, Igor Vaynberg [EMAIL PROTECTED] wrote: 1.3 is here, 2.0 will be joining at some point in the future

Re: [Wicket-user] Maven repository for wicket-dojo and wicket-scriptaculous?

2007-02-26 Thread Ryan Sonnek
Igor, I'd love to get the wicket-scriptaculous project involved in this as well. what account information do you need to set this up? On 2/26/07, Igor Vaynberg [EMAIL PROTECTED] wrote: yes, you can create user groups and assign them to projects, etc. so far no one from wicket-stuff asked to

[Wicket-user] building wicket-stuff snapshots

2007-03-05 Thread Ryan Sonnek
I'm working on setting up the wicket-contrib-scriptaculous project on the wicket-stuff bamboo server, and would like to know if it's possible to have it automatically publish snapshots to the wicket-stuff maven repo? anything special needed to set this up?

Re: [Wicket-user] building wicket-stuff snapshots

2007-03-05 Thread Ryan Sonnek
Rock on! It can't get much more simple than that! On 3/5/07, Igor Vaynberg [EMAIL PROTECTED] wrote: nothing special, just mvn install the webserver links to the local maven repository :) -igor On 3/5/07, Ryan Sonnek [EMAIL PROTECTED] wrote: I'm working on setting up the wicket-contrib

[Wicket-user] 2.x - renderHead() changes?

2007-03-05 Thread Ryan Sonnek
I just updated the wicket-contrib-scriptaculous bamboo build to automatically kick off whenever the core wicket build occurs, and I'm getting a wierd error. Did some core API change somewhere? http://wicketstuff.org/bamboo/build/viewBuildLog.action?buildKey=WICKETSCRIPTACULOUS-TRUNKbuildNumber=3

Re: [Wicket-user] 2.x - renderHead() changes?

2007-03-05 Thread Ryan Sonnek
My apologies, I pulled down the latest codebase and was able to change the scriptaculous code to use HeaderContributor.forCss() instead. Now that bamboo is setup to build correctly, i should catch these issues right away! On 3/5/07, Ryan Sonnek [EMAIL PROTECTED] wrote: I just updated the wicket

Re: [Wicket-user] IMPORTANT: your opinion on the constructor change in 2.0

2007-03-07 Thread Ryan Sonnek
Just my 2 cents, but considering the *massive* API changes in other opensource projects when releasing a major version, i don't think providing users with an easy upgrade path is that important. Look at struts for example. version 2.0 is a *complete* rewrite and requires users to do a lot of

Re: [Wicket-user] ajax / javascript widgets in wicket

2007-04-13 Thread Ryan Sonnek
i'll just add my two cents here. I don't have a solution for you, but i can tell you that wicket has helped me kick ass developing AJAX heavy apps. The wicket API makes it extremely easy for me to get what I need done. It makes the easy things easy and the hard things possible. Looks like

[Wicket-user] wicket-bench for 1.3-SNAPSHOT

2007-04-30 Thread Ryan Sonnek
is there anyone from the wicket-bench team out there that can provide info on a new version for the upcoming 1.3 release? now that the package names have changed, my wicket bench tests are totally hosed up... - This SF.net

[Wicket-user] Button using button tag instead of input

2007-04-30 Thread Ryan Sonnek
I'm trying to use a wicket Button on an html button tag instead of an input tag, but wicket keeps throwing this error: WicketMessage: Component deleteSlideButton must be applied to a tag of type 'input', not 'button wicket:id=deleteSlideButton' Is this possible, or is there a different wicket

Re: [Wicket-user] Button using button tag instead of input

2007-05-01 Thread Ryan Sonnek
of the Link object? On 4/30/07, Igor Vaynberg [EMAIL PROTECTED] wrote: use link or submitlink. -igor On 4/30/07, Ryan Sonnek [EMAIL PROTECTED] wrote: I'm trying to use a wicket Button on an html button tag instead of an input tag, but wicket keeps throwing this error: WicketMessage

Re: [Wicket-user] Button using button tag instead of input

2007-05-01 Thread Ryan Sonnek
just do its job looking where it is attached to. johan On 5/1/07, Igor Vaynberg [EMAIL PROTECTED] wrote: use link or submitlink. -igor On 4/30/07, Ryan Sonnek [EMAIL PROTECTED] wrote: I'm trying to use a wicket Button on an html button tag instead

Re: [Wicket-user] Button using button tag instead of input

2007-05-01 Thread Ryan Sonnek
On 5/1/07, Igor Vaynberg [EMAIL PROTECTED] wrote: use link or submitlink. -igor On 4/30/07, Ryan Sonnek [EMAIL PROTECTED] wrote: I'm trying to use a wicket Button on an html button tag instead of an input tag, but wicket keeps

Re: [Wicket-user] Button using button tag instead of input

2007-05-01 Thread Ryan Sonnek
Button class should just do its job looking where it is attached to. johan On 5/1/07, Igor Vaynberg [EMAIL PROTECTED] wrote: use link or submitlink. -igor On 4/30/07, Ryan Sonnek [EMAIL PROTECTED] wrote: I'm

Re: [Wicket-user] Button using button tag instead of input

2007-05-05 Thread Ryan Sonnek
On 5/5/07, Jean-Baptiste Quenot [EMAIL PROTECTED] wrote: * Ryan Sonnek: Using the current Link object is *not* an option since it doesn't disable buttons correctly. Yes it does it's fixed. So, now I'm confused. If Link is fixed, should I use it or the updated Button object

[Wicket-user] inspecting model from IComponentInstantiationListener

2007-05-10 Thread Ryan Sonnek
What exactly should a component instantiation listener be able to do? I'm trying to build one that will inspect the model of every component, but the model is not yet bound. is there a way to register a listener that is notified once the model is bound?

[Wicket-user] Fwd: inspecting property models

2007-05-11 Thread Ryan Sonnek
forwarding to wicket-user -- Forwarded message -- From: Ryan Sonnek [EMAIL PROTECTED] Date: May 10, 2007 10:33 PM Subject: inspecting property models To: [EMAIL PROTECTED] This discussion came out of the recent hibernate wicket-stuff activity. For my behaviors/validators

Re: [Wicket-user] TextTemplateHeaderContributor.forJavaScript and Ajax

2007-06-05 Thread Ryan Sonnek
Issue filed: https://issues.apache.org/jira/browse/WICKET-618 On 6/5/07, Eelco Hillenius [EMAIL PROTECTED] wrote: Was an RFE made for that? Seems like something we should do automagically if possible. Eelco On 6/5/07, Alex Objelean [EMAIL PROTECTED] wrote: I use for this purpose the

[Wicket-user] wickettester failures

2007-06-05 Thread Ryan Sonnek
I could use a little help here. I'm trying to write a unit test for my component in wicketstuff-scriptaculous. The test runs in eclipse just fine, but running mvn test causes a build failure. What is the correct way to test this? public class AjaxEditInPlaceLabelTest extends TestCase {

Re: [Wicket-user] wickettester failures

2007-06-06 Thread Ryan Sonnek
when you execute it in maven? Eelco On 6/5/07, Ryan Sonnek [EMAIL PROTECTED] wrote: I could use a little help here. I'm trying to write a unit test for my component in wicketstuff-scriptaculous. The test runs in eclipse just fine, but running mvn test causes a build failure. What

Re: [Wicket-user] wickettester failures

2007-06-06 Thread Ryan Sonnek
On 6/5/07, James McLaughlin [EMAIL PROTECTED] wrote: Hi Ryan, I don't think you can test it like that unless you have a default constructor, and even then I don't think it will work (I'm a bit spotty on this). What I have always done is this: tester.startPanel(new TestPanelSource () {

Re: [Wicket-user] wickettester failures

2007-06-06 Thread Ryan Sonnek
excludes exclude**/*Panel*/exclude /excludes /configuration /plugin best, jim On 6/6/07, Ryan Sonnek [EMAIL PROTECTED] wrote: On 6/5/07, James McLaughlin [EMAIL PROTECTED] wrote: Hi Ryan, I don't think you can test it like that unless

[Wicket-user] absolute resource paths and asset servers

2007-06-08 Thread Ryan Sonnek
I've seen a discussion over the past few days about relative vs absolute paths in wicket. I'd like to pose a similar question and see if wicket can support this usecase. Ruby on Rails has this new feature where they will automatically convert images and javascript references to use a different

Re: [Wicket-user] IComponentInstantiationListener problem

2007-06-18 Thread Ryan Sonnek
I've had this same issue when trying to build a component instantiation listener for inspecting hibernate annotations. Since the IComponentInstantiationListener interface doesn't have a hook for onModelBinding, i've tried to use Behaviors instead. Can you try something like this? public

[Wicket-user] modifying component from IComponentOnBeforeRenderListener

2007-06-21 Thread Ryan Sonnek
I'm *still* trying to find a way to modify a component *when the model is bound*. The new IComponentOnBeforeRenderListener seems close, but I can't *modify* the component since it's already started the rendering cycle. I'm trying to call Component.setRequired(true) on the component, and that

Re: [Wicket-user] modifying component from IComponentOnBeforeRenderListener

2007-06-22 Thread Ryan Sonnek
it! -Matej On 6/22/07, Ryan Sonnek [EMAIL PROTECTED] wrote: I'm *still* trying to find a way to modify a component *when the model is bound*. The new IComponentOnBeforeRenderListener seems close, but I can't *modify* the component since it's already started the rendering cycle. I'm trying

  1   2   >