Re: [Wicket-user] DatePicker with SimpleDateFormat

2006-08-14 Thread Ali Zaid
Did you check DateTextField wicket-extensions? On 8/14/06, kurt heston [EMAIL PROTECTED] wrote: Johan, Thanks for the help. Settled on this: final DateConverter conv = new DateConverter(); final SimpleDateFormat sdf = new SimpleDateFormat(MM/yy);

[Wicket-user] Gmail style ajax loading indicator and disabled zone

2006-08-14 Thread Ingram Chen
Hi, DWR project build-in red loading indicator and disable full browser window while ajax loading (aka gmail style). This is a quite useful feature and implemetation is trivial. Is there any plan to add this feature in wicket-core or extension ? it would be better we can just configuring in

Re: [Wicket-user] Gmail style ajax loading indicator and disabled zone

2006-08-14 Thread Johan Compagner
would you want that as a global setting for all ajax behaviours?just polling for example for new data i don't want to have the busy or loading indicator..If we had something like that then i guess it should be a property on the behaviour itself. johanOn 8/14/06, Ingram Chen [EMAIL PROTECTED]

Re: [Wicket-user] Buttons not responding in IE

2006-08-14 Thread wicket21
Yes! The pages have many panels with forms in them. At a point, two forms where the one inside the other, with the second one appearing conditionally and that's why it didn't occur to me earlier! Thanx a lot Igor! /Kostas igor.vaynberg wrote: is the button inside a form? -Igor On

Re: [Wicket-user] Gmail style ajax loading indicator and disabled zone

2006-08-14 Thread Ingram Chen
Yes, polling is a exception for busy indicator, but how many polling will be used in a web site ? I believe 'normal' ajax processing is more than polling, so it should be good to have a global setting, and let each behavior to overwrite global setting if required. On 8/14/06, Johan Compagner

[Wicket-user] Palette component question

2006-08-14 Thread drakonis
Hi everyone, I'm a new wicket user and curently trying out some examples. Stumbled upon the Palette component which i want to integrate in my project. Problem is i need to make it work a little different. For starters i would like just to have only the move , buttons, not the other two. I will

Re: [Wicket-user] Palette component question

2006-08-14 Thread Johan Compagner
1 try an label that is not visible or something like that2 why would you submit everytime one move? I thought the pallete component was there for easy configuring the complete list and the submit.johan On 8/14/06, drakonis [EMAIL PROTECTED] wrote: Hi everyone, I'm a new wicket user and curently

Re: [Wicket-user] beginners question: wicket and sessions

2006-08-14 Thread Korbinian Bachl
HI Joahn, Hi Igor, thx very much - emm, you dont how EJB sessions are working with wicket ? (do i have to tie the specific stateful bean to the session or does the container remember itself the bean to the session e.g.for a shopping cart...) Korbinian PS: you really should change the name

Re: [Wicket-user] Palette component question

2006-08-14 Thread drakonis
10x for the answer, but 1. i actually tried returning a label before i posted got the error: Expected close tag for 'button type=button wicket:id=moveUpButton class button up' Possible attempt to embed component(s) ' up.gif ' in the body of this component which discards its body. I can't really

Re: [Wicket-user] open link in new window...

2006-08-14 Thread erik_wamblee
I think I already know what I did wrong. I put passed the Track to the page through the session object and then invoke setResponsePage(TrackMapPage.class). Instead I should construct a new TrackMapMage object with the track and call setResponsePage with that object. So: setResponsePage(new

Re: [Wicket-user] Palette component question

2006-08-14 Thread Johan Compagner
ahh ok1 new WebMarkupContainer().setVisible(false)2 i get the idea that you just have to write your own component, this is not where pallete is build for (i think)johan On 8/14/06, drakonis [EMAIL PROTECTED] wrote: 10x for the answer, but1. i actually tried returning a label before i posted got

[Wicket-user] wicket-auth-roles-1.2.x

2006-08-14 Thread Alex Objelean
I am currently using wicket-1.2.1 which compiles under java 1.4... My question is why the same version of the wicket-auth-roles package is targeting java 1.5? Thank you! -- View this message in context: http://www.nabble.com/wicket-auth-roles-1.2.x-tf2103539.html#a5797285 Sent from the Wicket

Re: [Wicket-user] Palette component question

2006-08-14 Thread drakonis
Thanks. Tried like u said, but the html that is renderer still contains an input button even if it has no actions. No matter, found this super wicket-hack:) Browsing the sources turns out that the last parameter in the constructor is a boolean allowOrder. By setting this to false the last two

Re: [Wicket-user] Gmail style ajax loading indicator and disabled zone

2006-08-14 Thread Igor Vaynberg
its not very (A)jaxy if you disable the browser while an ajax request is processing :) besides right now its trivial to do yourself - and that loading div to your basepage and a little bit of _javascript_ that hooks into wicket's global _javascript_ listeners and hides/shows it. -IgorOn 8/14/06,

Re: [Wicket-user] beginners question: wicket and sessions

2006-08-14 Thread Igor Vaynberg
On 8/14/06, Korbinian Bachl [EMAIL PROTECTED] wrote: thx very much - emm, you dont how EJB sessions are working with wicket ? (do i have to tie the specific stateful bean to the session or does the container remember itself the bean to the session e.g.for a shopping cart...)you get a

Re: [Wicket-user] Palette component question

2006-08-14 Thread Igor Vaynberg
reading javadoc helps :)/** * @param id * component id * @param model * model representing collection of user's selections * @param choicesModel * model representing collection of all available choices * @param choiceRenderer * render used to render choices * @param rows * number of choices to be

Re: [Wicket-user] beginners question: wicket and sessions

2006-08-14 Thread Igor Vaynberg
On 8/14/06, Korbinian Bachl [EMAIL PROTECTED] wrote: we like dirty() and havent had any complaints so far save this one. you can always do: MySession { public void sync() { dirty(); } } :) sure i can do this... i just meant u usuallydont think about snycronising whenseeing a dirty()

Re: [Wicket-user] Form-question

2006-08-14 Thread Gwyn Evans
Does this thread apply? (http://www.nabble.com/ajax-failed-to-update-a-component-%28wicket-1.2%29-tf1844050.html#a5033398) /Gwyn On 13/08/06, Mats Norén [EMAIL PROTECTED] wrote: What I want the following code to do is to iterate all propertyTypes and create or lookup the appropriate property on

[Wicket-user] Woogle and Woogle

2006-08-14 Thread Alexandre Bairos
http://www.gujian.net/woogle/http://woogle.billen.dk/search:) - Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download

Re: [Wicket-user] AjaxEventBehavior + TR element + IE6

2006-08-14 Thread Lorin Metzger
Igor Vaynberg wrote: also i tried wrapping tr and td in divs/spans and that did not help at all either. i wish you better luck, it would be great to have a solution for this but im not holding my breath. I have a work around, Its not quite as elegant as directly updating the TR element

Re: [Wicket-user] Woogle and Woogle

2006-08-14 Thread Frank Bille
Hehe, yeah I'm not very original. Perhaps we should vote for a different name? Any good surgestions?- FrankOn 8/14/06, Alexandre Bairos [EMAIL PROTECTED] wrote: http://www.gujian.nI'm not saying et/woogle/ http://woogle.billen.dk/search:)

Re: [Wicket-user] Form-question

2006-08-14 Thread Mats Norén
Not really, I'm not using any Ajax-stuff or anything like that. How do you mean? /Mats On 8/14/06, Gwyn Evans [EMAIL PROTECTED] wrote: Does this thread apply? (http://www.nabble.com/ajax-failed-to-update-a-component-%28wicket-1.2%29-tf1844050.html#a5033398) /Gwyn On 13/08/06, Mats Norén

[Wicket-user] Voicetribe open beta

2006-08-14 Thread Nathan Hamblen
Voicetribe is in open beta. (Now you can finally figure out what it is.) http://www.voicetribe.com/ Sign up for an account, pop in a DVD, and record something. Don't worry, you can't possibly say, Testing, 1 ... 2 ... 3 any worse than I do. All the non-serious recordings will be scrapped when

[Wicket-user] AbstractRequestTargetUrlCodingStrategy implementation

2006-08-14 Thread Karl M. Davis
Hello all, What I would like to have is a sitewhere user-specific feature pages map to hierarchical URLs. For example:* /site/user/karl/blog/2006/08/14 maps to BlogViewer(bob, "2006", "08", "14")* /site/user/karl/content/BestEssayEver maps to ContentViewer(fred, "MyLifeStory")*