[Wicket-user] I've done it again:) browser crashes/creating a custom component

2006-05-19 Thread Nino Wael
Title: I've done it again:) browser crashes/creating a custom component Im in the midst of developing a component that consists of sets of a radio buttons and a listchoice. The functionality is supposed to be like this: When you click one specific radio button then the sibling(actually

Re: [Wicket-user] Error in Wicket Bench

2006-05-19 Thread Joni Suominen
On Thu, 2006-05-18 at 08:38 -0800, Ayodeji Aladejebi wrote: please is someone here using the wicket bench? i keep getting this error when attempting to run my application Exception in thread main java.lang.ArrayIndexOutOfBoundsException: 0 at wicketbench.runner.Main.main (Main.java:10)

Re: [Wicket-user] Error in Wicket Bench

2006-05-19 Thread Ayodeji Aladejebi
thanks...enjoy you hiking tripOn 5/19/06, Joni Suominen [EMAIL PROTECTED] wrote: On Thu, 2006-05-18 at 08:38 -0800, Ayodeji Aladejebi wrote: please is someone here using the wicket bench? i keep getting this error when attempting to run my application Exception in thread main

[Wicket-user] I've done it again:) browser crashes/creating a custom component

2006-05-19 Thread Nino Wael
Title: I've done it again:) browser crashes/creating a custom component This is a resend, with files zipped since my original post didnt make it through. Im in the midst of developing a component that consists of sets of a radio buttons and a listchoice. The functionality is supposed to

Re: [Wicket-user] Google Web Toolkit integration ?

2006-05-19 Thread Johan Compagner
hmmm can't use itWe have to target that shitty mac (sorry guys ;) ) and it seems that the default browsersafari doesn't work as far as i could test.johanOn 5/18/06, Matej Knopp [EMAIL PROTECTED] wrote: The doctype is xhtml transitional. But there's an additional comment(!-- --) before doctype to

Re: [Wicket-user] can'nt read wiki

2006-05-19 Thread Gwyn Evans
Hmm, what URL are you trying, with what program what do you get? It looks like SF is having issues right now, in that if I go to http://wicket.sourceforge.net/wiki I just get Firefox showing Loading... but that's the same for the http://sourceforge.net/. You can still get to the Wiki itself at

[Wicket-user] Branch 1.2 final created

2006-05-19 Thread Martijn Dashorst
All,In preparation of our final release of Wicket 1.2 I have created a branch for 1.2As of now, all fixes to Wicket 1.2 final have to be done in the 1.2 branch.trunk is available for the next version of Wicket. You can find the branch at:/wicket/branches/WICKET_1_2Wicket 1.2 final will be created

RE: [Wicket-user] I've done it again:) browser crashes/creating a custom component

2006-05-19 Thread Nino Wael
Title: I've done it again:) browser crashes/creating a custom component Dos’nt anybody have a comment? BTW IE crashes with a message saying unable to read from memory, eclipse’s own browser(im not sure which one its build ontop) “just” crashes java.

Re: [Wicket-user] Branch 1.2 final created

2006-05-19 Thread Johan Compagner
ok commited all my changes now to trunkwhats in it:PageMap refactor. The default base pagemap doesn't do much anymoreWhat was our previoud pagemap is now called AccessStackPageMapthis was needed for: ClientPageSavingSessionStore A tryout of clientside page state saving. It works currently only for

Re: [Wicket-user] Conditional body onload event

2006-05-19 Thread Johan Compagner
see WebPage.getBodyContainer() and then the addonload methods where you can add something with a model that does something or not.johanOn 5/19/06, Renaut, Jonathan E CTR DISA GIG-CS [EMAIL PROTECTED] wrote: I am trying to add a popup warning message when a user hits the login page. I

Re: [Wicket-user] Collapsing Bar in Wicket

2006-05-19 Thread Johan Compagner
Not contribute anymore? no time?They only have to work for 8 hours for the boss!thats still 16 hours left of the 24 that you have in a day..johanOn 5/18/06, Martijn Dashorst [EMAIL PROTECTED] wrote: The dojo.js library is a product under very high construction. Our full time students had a really

Re: [Wicket-user] help

2006-05-19 Thread Johan Compagner
this is just _javascript_. set the src attribute when that event happens.johanOn 5/19/06, ketan gote [EMAIL PROTECTED] wrote:hello friends we want to change the images on diffrent events eg: suppose there is one image on its onMouseOver method we want to replace previous image is diaplyed on

Re: [Wicket-user] Error on compref live examples

2006-05-19 Thread Johan Compagner
works for me.examples in it seem to work.On 5/18/06, Nino Wael [EMAIL PROTECTED] wrote: Hi im getting and error when trying to look at this link: http://www.wicket-library.com/wicket-examples/compref regards Nino

Re: [Wicket-user] info log messages

2006-05-19 Thread Johan Compagner
just info. don't matter for youre running app.johanOn 5/18/06, ali [EMAIL PROTECTED] wrote:i myself setup wicket-examples in IDEA , and all things work well INFO- WicketServlet- WicketServlet loaded applicationComponentReferenceApplication viawicket.protocol.http.ContextParamWebApplicationFactory

Re: [Wicket-user] Google Web Toolkit integration ?

2006-05-19 Thread matej
Citát Johan Compagner [EMAIL PROTECTED]: hmm.. that sucks. I tested in in konqueror and it worked. As far as i know safari uses khtml. I wonder where the problem is... -matej hmmm can't use it We have to target that shitty mac (sorry guys ;) ) and it seems that the default browser safari

[Wicket-user] A ListView with no items

2006-05-19 Thread Stefan Kanev
Hi. I want to be able to display easily a ListView with no items. There are two things that bother me, thought. First, I would like to dipslay a message You have no foo's in the place of the list. And second, how do I drop the ul, given that my code is like this: ul li wicket:id=foos span

Re: [Wicket-user] A ListView with no items

2006-05-19 Thread Johan Compagner
give url a wicket:id and make it a WebMarkupContainer in the javapart.Then add another:img wicket:id=nophotosul wicket:id=listli wicket:id=foos span wicket:id=name[Name]/spanspan wicket:id=stuff[OtherStuff /span/li/uland make or the list or the nophoto's visible depending on the contentjohanOn

Re: [Wicket-user] A ListView with no items

2006-05-19 Thread Gwyn Evans
Well, off the top of my head, you could either use panels and have two panels there, chosing at run time (one with the UL and data, the other with the You have no foo's message), or alternatively have both in the basic page and setVisible(false) one or the other at run time. /Gwyn On 19/05/06,

[Wicket-user] Outputting Javascript inside script tag

2006-05-19 Thread Ayodeji Aladejebi
Okay pleeese what did i do wrong...i can see the expected _javascript_ inside the script tag as expectedscript language=_javascript_ type=text/_javascript_ wicket:id=initCall/script private void addInitJS(){ IModel initModel = new Model() { private static final long serialVersionUID = 1L;

Re: [Wicket-user] Google Web Toolkit integration ?

2006-05-19 Thread Johan Compagner
do you have a example html for me where all the stuff is in what you do and where i can see/testin all the browsers that i have to support?I would like to have such a test html. johan On 5/19/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Citát Johan Compagner [EMAIL PROTECTED]:hmm.. that sucks. I

Re: [Wicket-user] I've done it again:) browser crashes/creating a custom component

2006-05-19 Thread Igor Vaynberg
please provide us with a quickstart project so we can easily start it and see whats going on.-IgorOn 5/19/06, Nino Wael [EMAIL PROTECTED] wrote: Dos'nt anybody have a comment? BTW IE crashes with a message saying unable to read from memory, eclipse's own browser(im not sure

Re: [Wicket-user] Outputting Javascript inside script tag

2006-05-19 Thread Igor Vaynberg
use a Label instead of a WebMarkupContainer - the container does nothing by default with its model, a label writes the string rep of the model into its body.-IgorOn 5/19/06, Ayodeji Aladejebi [EMAIL PROTECTED] wrote: Okay pleeese what did i do wrong...i can see the expected _javascript_ inside

Re: [Wicket-user] Collapsing Bar in Wicket

2006-05-19 Thread Igor Vaynberg
i glanced at the code and it looks neat. if you dont mind throwing together a wicket-quickstart demo i will even play around with it (very short on time right now) do you want to contribute it to extensions?-Igor On 5/19/06, Ayodeji Aladejebi [EMAIL PROTECTED] wrote: yeah... lots of lazy

[Wicket-user] Border and markup inheritance problem

2006-05-19 Thread Jerry Smith
Sorry to send this again, I know youre all very busy trying to get the 1.2 release together, but I didnt want this to fall through the cracks if it is a bug. I'm get a WicketMessage: Unable to find component with id 'message' error. Maybe this can't be done or I'm doing it wrong using

Re: [Wicket-user] Border and markup inheritance problem

2006-05-19 Thread Igor Vaynberg
if you look at the hierarchy of your message label it is like this:in java:page-messagein markup:page-border-messageso when wicket tries to render message in the markup it cannot find it because it expects it to be in the border, but in fact you have added it to the page itself in extendpage. so

RE: [Wicket-user] Border and markup inheritance problem

2006-05-19 Thread Jerry Smith
Thanks for the reply Igor! Ill try the methods you mentioned. You also said markup inheritance is a better fit for this use case, could demonstrate how you would do this? I thought I was using markup inheritance, but it appears I dont fully understand how to set it up correctly. Thanks!

Re: [Wicket-user] Border and markup inheritance problem

2006-05-19 Thread Igor Vaynberg
with markup inheritance you wouldnt need a separate border that wraps all the pages, simply move everything that is in the border into the basepage instead.-IgorOn 5/19/06, Jerry Smith [EMAIL PROTECTED] wrote: Thanks for the reply Igor! I'll try the methods you mentioned. You also

Re: [Wicket-user] Border and markup inheritance problem

2006-05-19 Thread karthik Guru
can you try : public class BasePage extends WebPage { public BasePage() { add(new MyBorder(border).setTransparentResolver(true) ); } } The problem is that the message component should have been added to the Border component in the base page. But then that would mean an

Re: [Wicket-user] Collapsing Bar in Wicket

2006-05-19 Thread Andrew Berman
I wouldn't use Moo's effects. I had problems on some browsers with it. I was able to do it much simpler and with better support using Scriptaculous. I used a combination of BlindUp and BlindDown. On 5/19/06, Igor Vaynberg [EMAIL PROTECTED] wrote: i glanced at the code and it looks neat. if you

Re: [Wicket-user] Google Web Toolkit integration ?

2006-05-19 Thread Eelco Hillenius
What do you mean it doesn't work? As the target platform? Sure Safari works. Just not out-of-the-box for development. Eelco On 5/19/06, Johan Compagner [EMAIL PROTECTED] wrote: do you have a example html for me where all the stuff is in what you do and where i can see/test in all the browsers

[Wicket-user] Broadest appeal for Wicket

2006-05-19 Thread Dave Johnson
I have a little background in OO and am a strong advocate, though I know it needs to be done well, just like anything else. And I have some beginning competence in Java and use it with Eclipse. So Wicket has great appeal for me. However, not being familiar with the various web development

[Wicket-user] Broadest appeal for Wicket

2006-05-19 Thread Dave Johnson
I have a little background in OO and am a strong advocate, though I know it needs to be done well, just like anything else. And I have some beginning competence in Java and use it with Eclipse. So Wicket has great appeal for me. However, not being familiar with the various web development

[Wicket-user] Dynamically Creating Shared Resources

2006-05-19 Thread Joe Toth
I have images added to a database externally from wicket. Is there a way wicket can serve these new images? ...without running a thread that will check if new images are available and adding them to SharedResources. Any ideas? Thanks ---

[Wicket-user] notify on update of bookmarked page

2006-05-19 Thread ali
very thanks by best web framwwork i see. (you throw logic from markup to code , i love this part) has you plan for a IDEA plugin for wicket. 1)by macro feature of IDEA , you can only by a click highlight all components in markup A- only add following macro to macros.xml of your config

Re: [Wicket-user] can'nt read wiki

2006-05-19 Thread ali
http://www.wicket-wiki.org.uk/wiki/index.php/FAQs or http://www.wicket-wiki.org.uk/wiki/index.php/Main_Page i use opera my IP is not fix and i use dailup connection client ip = 195.96.134.91 server ip = 195.96.133.12 i not user ad filter ofcourse i use builtin ad filter of