[Wicket-user] Trouble with characters: Æ Ø Å

2006-02-21 Thread Nino Wael
Title: Trouble with characters: Æ Ø Å Hi Im having a bit of a trouble using wicket with Danish characters, they do not get displayed correctly the first time a page is displayed on postbacks the show like supposed to. I’ve buildt a very simple example based on the Quickstart tutorial for e

[Wicket-user] RE: [Wicket-user] Re: [Wicket-user] Troubl e with characters: Æ Ø Å

2006-02-21 Thread Nino Wael
haven't checked your markup. But wicket defaults to utf-8. The most > > common mistake is that people don't store the markup in utf-8 even > > though they put or in the markup. > > > > Juergen > > > > On 2/21/06, Nino Wael <[EMAIL PROTECTED]> wrote: &

[Wicket-user] RadioButtons with a twist?

2006-02-22 Thread Nino Wael
Title: RadioButtons with a twist? Hi Im currently trying to figure out how to implement radiobutton with additional information meaning that I have somesort of control which carries a ID, short text and descriptive information for the radio button, I’ve seen something about having the custo

[Wicket-user] Listview: cannot instantiate the type

2006-02-22 Thread Nino Wael
Title: Listview: cannot instantiate the type Hi Im having trouble instantiateing the Listview control, I get the error ”Cannot Instiantiate the type ListView”. This is within these lines the errors occur: private  wicket.markup.html.list.ListView myList; …     List forklaring = Array

RE: [Wicket-user] Listview: cannot instantiate the type

2006-02-23 Thread Nino Wael
    public void populateItem(ListItem item) {     // add stuff to item.     } }; On 2/23/06, Nino Wael <[EMAIL PROTECTED]> wrote: Hi Im having trouble instantiateing the Listview control, I get the error "Cannot Instiantiate the type ListView" . This is within these lines

RE: [Wicket-user] Listview: cannot instantiate the type

2006-02-23 Thread Nino Wael
l("name", new PropertyModel( item.getModelObject(), "name"))); } In your case that would be: protected void populateItem(ListItem item) {     item.add(new Label("name", item.getModelObjectAsString())); } and in the markup: text goes here Martijn On 2/23/06, N

RE: [Wicket-user] Listview: cannot instantiate the type

2006-02-23 Thread Nino Wael
forlobdescription Forlob pr berortdescription Martijn On 2/23/06, Nino Wael <[EMAIL PROTECTED]> wrote: Very nice, bringing my mind back to the mail I wrote earlier(radio buttons with a twist)  I guess I then could do the following, code might not be 100% accurate:     List maalinger = Arrays.

[Wicket-user] RE: [Wicket-user] Re: [Wicket-user] Troubl e with characters: Æ Ø Å

2006-02-23 Thread Nino Wael
When I resaved the markup in UTF-8 chars were displayed correctly. -Nino -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Piotr Bzdyl Sent: Tuesday, February 21, 2006 10:14 PM To: wicket-user@lists.sourceforge.net Subject: [Wicket-user] Re: [Wicket-user] T

[Wicket-user] Wicket Requirements?

2006-02-23 Thread Nino Wael
Title: Wicket Requirements? I’ve tried to look on the wicket home page to see what the minimum requirements are for wicket, but haven’t been able to find any clear message. Any one who know what they are? Im thinking of Java version and such, does it run with Tomcat 4.1.18? Regards Nino

[Wicket-user] Onsubmit giving error? Missing model?

2006-02-28 Thread Nino Wael
Hi Im having some trouble getting my onsubmit to work, looking at one of the simple examples it looks like im doing the right thing(ive been looking at http://www.wicket-library.com/wicket-examples/signin). So hints on what im doing wrong and possible howto fix it will be much appreciated.

[Wicket-user] submitting wicket examples

2006-03-03 Thread Nino Wael
Title: submitting wicket examples Hi Im in the mist of developing a bunch of controls for wicket, one for example will be able to populate a listbox based on the selection of another listbox. I guess this is something that could be of interest for the typical wicket user. So how do I submit

RE: [Wicket-user] submitting wicket examples

2006-03-03 Thread Nino Wael
ag <[EMAIL PROTECTED]> wrote: > You send them to me and I'll add them to either wicket-examples or > wicket-contrib-examples. And I'll deploy them on wicket-library. > > Juergen > > On 3/3/06, Nino Wael <[EMAIL PROTECTED]> wrote: > > > > > > Hi >

[Wicket-user] onSelectionChanged() for Listmultiplechoice

2006-03-06 Thread Nino Wael
Title: onSelectionChanged() for Listmultiplechoice Has anyone implemented this? Preforable in a class that allows single selection and mutiple selections? -regards Nino

[Wicket-user] RadioGroup: test fails

2006-03-06 Thread Nino Wael
Title: RadioGroup: test fails Hi I know I am doing something wrong im just not sure whatJ I have a radiogroup, which I populate with radio buttons, in a listview:         myRadioGroup = new wicket.markup.html.form.RadioGroup("radiogroup");         form.add(

RE: [Wicket-user] RadioGroup: test fails

2006-03-06 Thread Nino Wael
?     -regards Nino From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Nino Wael Sent: Monday, March 06, 2006 12:50 PM To: wicket-user@lists.sourceforge.net Subject: [Wicket-user] RadioGroup: test fails   Hi I know I am doing something

RE: [Wicket-user] RadioGroup: test fails

2006-03-06 Thread Nino Wael
Title: RadioGroup: test fails Argh I meant Radio not RadioChoice.   -Nino From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Nino Wael Sent: Monday, March 06, 2006 1:40 PM To: wicket-user@lists.sourceforge.net Subject: RE: [Wicket

[Wicket-user] [wicket 1.1.1]FormTester clicking a specific button

2006-03-07 Thread Nino Wael
Title: [wicket 1.1.1]FormTester clicking a specific button Hi How do I click a specific button using the test wicket framework? -regards Nino

RE: [Wicket-user] onSelectionChanged() for Listmultiplechoice

2006-03-07 Thread Nino Wael
would you have that? On every click you want to go to the server? johan On 3/6/06, Nino Wael <[EMAIL PROTECTED]> wrote: Has anyone implemented this? Preforable in a class that allows single selection and mutiple selections? -regards Nino  

RE: [Wicket-user] [wicket 1.1.1]FormTester clicking a specific button

2006-03-07 Thread Nino Wael
this: FormTester formTester = wicketTester.newFormTester(false); formTester.setValue("myButton", "whatever"); formTester.submit() ; this should click the button with "myButton" wicketId. On 3/7/06, Nino Wael <[EMAIL PROTECTED]> wrote: Hi How do I cl

[Wicket-user] DropDownChoice howto change default text

2006-03-08 Thread Nino Wael
Title: DropDownChoice howto change default text Hi How do I change the default text (“Choose One”, see picture below) of a dropdownchoice, do I need to implement a custom render? I’ve looked at the methods for dropdownchoice class but no one seems to do just that. -regards Nino

RE: [Wicket-user] DropDownChoice howto change default text

2006-03-08 Thread Nino Wael
then a page.properties file that has a form as a child where the choice is in. johan On 3/8/06, Nino Wael <[EMAIL PROTECTED]> wrote: Hi How do I change the default text ( "Choose One ", see picture below) of a dropdownchoice, do I need to implement a custom render? I&#

[Wicket-user] Testing form with multiple submit buttons?

2006-03-13 Thread Nino Wael
Hi I have a form with multiple submit buttons, how do I click the correct button? On formtester I can only set the submit method. Which does not allow med to specify which button to click. -regards Nino

SV: [Wicket-user] Testing form with multiple submit buttons?

2006-03-14 Thread Nino Wael
formTester.submit() ; Does this not work for you ? On 3/13/06, Nino Wael <[EMAIL PROTECTED] > wrote: Hi I have a form with multiple submit buttons, how do I click the correct button? On for

[Wicket-user] Suggestions on howto check if listbox has been populated?

2006-03-14 Thread Nino Wael
Hi Im trying to do some testing with the wicket test framework and was wondering on the bedst method to test if at listbox contains any data items, I guess I could use the wickettester.assertContains() to check for a certain value in the listbox. But what if I have two list boxes in a speci

[Wicket-user] wicket:1.1.1 error unknown interface IOnChangeListener?

2006-03-15 Thread Nino Wael
Hi I've created a control which essentially is a radio button and a listbox, where each click on the radio button populates the listbox with values. I've done or rarther are trying to do this by using the wicket radiochoice and a wicket ListMultipleChoice. And are overiding the onSelectionChang

SV: [Wicket-user] wicket:1.1.1 error unknown interface IOnChangeListener?

2006-03-15 Thread Nino Wael
On 3/15/06, Nino Wael <[EMAIL PROTECTED]> wrote: Hi I've created a control which essentially is a radio button and a listbox, where each click on the radio button populates the listbox

[Wicket-user] wicket 1.1.1:radiochoice default selected value?

2006-03-16 Thread Nino Wael
Title: wicket 1.1.1:radiochoice default selected value? Hi I need to have a default value selected when rendering a radiochoice, should I overide getdefault choice for to do this? -regards Nino

[Wicket-user] wicket 1.1.1: specifiying style on radiochoice or dropdownchoice

2006-03-17 Thread Nino Wael
Title: wicket 1.1.1: specifiying style on radiochoice or dropdownchoice Hi How do I specify a style for radiochoice or dropdownchoice, do I need to create my own class and create a constructor which takes a style as a string and then adds it to the html? -regards Nino

SV: [Wicket-user] wicket 1.1.1: specifiying style on radiochoice or dropdownchoice

2006-03-17 Thread Nino Wael
since it is in total control of the markup, if you want to style it you can use Radio/RadioGroup components instead. -Igor On 3/17/06, Nino Wael <[EMAIL PROTECTED]> wrote: Hi How do I specify a

SV: [Wicket-user] wicket 1.1.1: specifiying style on radiochoice or dropdownchoice

2006-03-17 Thread Nino Wael
johan On 3/17/06, Nino Wael < [EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]> > wrote: On my RadioChoice I make use of the onSelectionChanged, I cant find a method to do this on Radio/RadioGroup so I guess I need to imple

SV: [Wicket-user] wicket 1.1.1: specifiying style on radiochoice or dropdownchoice

2006-03-17 Thread Nino Wael
Sorry for not reading the homepage, I see that you have a migration guide. However my question about how far you are from going stable still stands. -regards Nino -Oprindelig meddelelse- Fra: [EMAIL PROTECTED] på vegne af Nino Wael Sendt: fr 17-03-2006 11:22

SV: [Wicket-user] wicket 1.1.1: specifiying style on radiochoice or dropdownchoice

2006-03-17 Thread Nino Wael
johan On 3/17/06, Nino Wael <[EMAIL PROTECTED]> wrote: Hmm, how far is 1.2 from going stable, is possible to get a status on that? Im in the midst of developing could I just sw

[Wicket-user] wicket 1.2 beta 2 RadioGroup selecting a default

2006-03-21 Thread Nino Wael
Hi im having some trouble making a default selection on my radiogroup. Should I try to make the selection on the radiogroup or the button itself, I guess the first? Currently im trying to use RadioGroup.setModelObject, however this is not working or I am passing on a wrong object. I'll very

SV: [Wicket-user] wicket 1.2 beta 2 RadioGroup selecting a default

2006-03-21 Thread Nino Wael
a default there is an example usage in wicket examples/ component reference. -Igor On 3/21/06, Nino Wael <[EMAIL PROTECTED] > wrote: Hi im having some trouble making a default selection o

[Wicket-user] Validation

2006-03-27 Thread Nino Wael
Hi   Might be me which has’nt been looking good enough into documentation.   So I have the following scenario and question:   Two listmultiplechoice box’ses where you can exchange contents of the list boxes by pressing one of two buttons see nice ascii grapichs below:   Listbox a   

RE: [Wicket-user] Validation

2006-03-27 Thread Nino Wael
can do this all nicely via some very basic _javascript_. see Palette component in extensions, it does exactly what you want and more. -Igor On 3/27/06, Nino Wael <[EMAIL PROTECTED]> wrote: Hi   Might be me which has'nt been looking good enough into documentation.   So I h

RE: [Wicket-user] Validation

2006-03-27 Thread Nino Wael
@lists.sourceforge.net Subject: Re: [Wicket-user] Validation   yes, the palette takes care of everything for you. thats the point of encapsulation :) check out component reference in wicket examples for 1.2 -Igor On 3/27/06, Nino Wael <[EMAIL PROTECTED]> wrote: Well, because it was th

RE: [Wicket-user] Validation

2006-03-27 Thread Nino Wael
?   -regards Nino     From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Nino Wael Sent: 27. marts 2006 11:16 To: wicket-user@lists.sourceforge.net Subject: RE: [Wicket-user] Validation   That is great.   However our client has some specific requirements towards the look of the

SV: [Wicket-user] label that shows the date

2006-03-27 Thread Nino Wael
download the wicket-examples: http://sourceforge.net/project/showfiles.php?group_id=119783&package_id=138752 and look in the source:) -Oprindelig meddelelse- Fra: [EMAIL PROTECTED] på vegne af Geertjan Wielenga Sendt: ma 27-03-2006 13:31 Til: wicket

[Wicket-user] Howto add dynamic contents

2006-03-27 Thread Nino Wael
Hi I have a page where I need to be able to add controls when a certain button is clicked. See the nice ascii grapichs below: | ADD | upon pressing add this new screen | ADD | --- | checkbox a | ---

SV: [Wicket-user] Wicket 1.2-beta3 is available

2006-04-03 Thread Nino Wael
Going through the bug list I saw that this should be closed http://sourceforge.net/tracker/index.php?func=detail&aid=1450567&group_id=119783&atid=684975 I can confirm that there no longer is classloading problems this is has been tried on jetty and tomcat. Was an issue on 1.1.1 but no longer on

[Wicket-user] wicket 1.2 beta 2 DropDownChoice default display value.. "Please Choose one"

2006-04-05 Thread Nino Wael
Hi   I looked at the dialog between Igor and Stefan, thought what a nice way to select the default value with the property model. However and then remembered why it did not do it that way, I wanted to replace the Choose One text with something else, well at least in some cases. Im replaci

RE: [Wicket-user] wicket 1.2 beta 2 DropDownChoice default display value.. "Please Choose one"

2006-04-05 Thread Nino Wael
cted) is called and appended to the output. johan P.S. Now i think about it getDefaultChoice is a perfect candidate for returning a CharSequence instead of a string. So that you don't have to call toString() on it. On 4/5/06, Nino Wael <[EMAIL PROTECTED]> wrote: Hi   I lo

SV: [Wicket-user] wicket 1.2 beta 2 DropDownChoice default display value.. "Please Choose one"

2006-04-06 Thread Nino Wael
vegne af Nino Wael Sendt: to 06-04-2006 10:02 Til: wicket-user@lists.sourceforge.net Cc: Emne: SV: [Wicket-user] wicket 1.2 beta 2 DropDownChoice default display value.. "Please Choose one" Hmm strange, Im pretty much doin

[Wicket-user] Check / Checkbox

2006-04-06 Thread Nino Wael
Hi   Im trying to use some of the functionality of Checkbox but I get an exception : “wicket.util.string.StringValueConversionException: Boolean value "[EMAIL PROTECTED]" not recognized”   I guess this tells me that my model needs either to be true of false as a string, however I woul

[Wicket-user] ListChoice changes appearance from dropdown to listbox

2006-05-09 Thread Nino Wael
Hi   Im not sure if this is the intended functionality, but I belive I’ve discovered an oddity or featureJ.   When I use the constructor which also takes a model (ListChoice("dropdown_job", new Model(),myList, new myRenderer)) my listchoice is no longer displayed as a dropdown but as a

RE: [Wicket-user] ListChoice changes appearance from dropdown to listbox

2006-05-10 Thread Nino Wael
s, getChoices().size())); so i guess if maxRows of size() == 1 then it becomes a dropdown? johan On 5/9/06, Nino Wael <[EMAIL PROTECTED]> wrote: Hi   Im not sure if this is the intended functionality, but I belive I've discovered an oddity or featureJ .   When I use the

[Wicket-user] Sessions?

2006-05-16 Thread Nino Wael
Hi   I have an object I would like to have stored in session, so that I may pass it between pages. I’ve been looking at some sniplets and created this code for setting the object:   HttpServletRequest request = ((WebRequest)RequestCycle.get().getRequest()).getHttpServletRequest();  

RE: [Wicket-user] Sessions?

2006-05-17 Thread Nino Wael
new WebSession( WebApplication.this);     } Martijn On 5/16/06, Nino Wael <[EMAIL PROTECTED]> wrote: Hi   I have an object I would like to have stored in session, so that I may pass it between pages. I've been looking at some sniplets and created this code for setting

[Wicket-user] popup button

2006-05-17 Thread Nino Wael
Hi   Was wondering if any body has an example on howto create a popup button? I’ve looked at the triggerbutton from the datepicker extension but that seems to be too complex for such a “simple” thing?   I want it to run the onsubmit method on the popupbutton and after that it should ma

SV: [Wicket-user] popup button

2006-05-17 Thread Nino Wael
Til: wicket-user@lists.sourceforge.net Cc: Emne: Re: [Wicket-user] popup button Hi, You can use a Link with a PopupSpecification. And you can (or should be able to) actually attach a link to any tag, including a button tag.

RE: [Wicket-user] popup button

2006-05-18 Thread Nino Wael
ttaches to the input tag. Like I said, it could attach to anything really, including buttons, table rows, etc. Hope this helps, Eelco On 5/17/06, Nino Wael <[EMAIL PROTECTED]> wrote: > Ok, I think I need an example. I'll describe how I belive it works below > please correc

[Wicket-user] Error on compref live examples

2006-05-18 Thread Nino Wael
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] popup button

2006-05-18 Thread Nino Wael
] popup button Don't override the onclick method. Eelco On 5/18/06, Nino Wael <[EMAIL PROTECTED]> wrote: > > > > > > Im now using the Pagelink which has the nice onClick event, when the new page > pops up its just a copy of the current page. And not the cla

RE: [Wicket-user] popup button

2006-05-18 Thread Nino Wael
Doh, im a little slow today. When overriding I just call the super.onclick :) This works fine:) -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Nino Wael Sent: 18. maj 2006 11:55 To: wicket-user@lists.sourceforge.net Subject: RE: [Wicket-user] popup

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

2006-05-18 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 chi

[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 didn’t 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] I've done it again:) browser crashes/creating a custom component

2006-05-19 Thread Nino Wael
java.       Regards Nino From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Nino Wael Sent: Friday, May 19, 2006 8:57 AM To: wicket-user@lists.sourceforge.net Subject: [Wicket-user] I've done it again:) browser crashes/creating a custom component   Im in

Re: [Wicket-user] Question about Panel

2007-02-28 Thread Nino Wael
Just create the panel as an anonym class in your page or inner class... Pseudo Snipplet: Webpage extends page { Mypanel panel=new Mypanel(); This.add(panel); } Mypanel extends panel{} As I remember it should work... From: [EMAIL PROTEC

Re: [Wicket-user] Nicer URLs

2007-02-28 Thread Nino Wael
Just use a mountedurl mountBookmarkablePage("/desiredurl", desiredclass.class); -Nino -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Chris Colman Sent: 28. februar 2007 11:59 To: wicket-user@lists.sourcef

Re: [Wicket-user] Nicer URLs

2007-02-28 Thread Nino Wael
Oeh an forgot to say that parameters you can just append to the url Short example: http:\\localhost\mywicketapp\myniceurl\paramA\valueA\paramB\valueB -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Nino Wael Sent: 28. februar 2007 12:02 To: wicket

[Wicket-user] how do I set Ajax time out[wicket 1.2.4]?

2007-03-15 Thread Nino Wael
Hi I have some components that uses the ajaxformupdatingbehavior. Some times(1% of 1300 requests) under "heavy" load(24 concurent users/threads using jmeter) some of them fails to be able to select something in the dropdown thats using the updating behavior. This leads me to think that the aj

Re: [Wicket-user] how do I set Ajax time out[wicket 1.2.4]?

2007-03-15 Thread Nino Wael
Hmm this is really wierd, when testing this against one of our dev machine's these errors does not occur.. It only occurs against our servers. Fra: [EMAIL PROTECTED] på vegne af Nino Wael Sendt: to 15-03-2007 13:56 Til: wicket-user@lists.sourceforge.net

[Wicket-user] getRealPath(wicket 1.2.4) any proper wicket way to this?

2007-03-26 Thread Nino Wael
Hi Currently we are doing this within our wicket application: getWicketServlet().getServletContext().getRealPath("/"); Im wondering if there are a more wicketly kind of approach to this? regards Nino <>- Take Surveys. Ear

[Wicket-user] AJAX modal window (1.2.5)and form

2007-03-26 Thread Nino Wael
Hi I have a AJAX modal window wich contains a form. In the form there a an radiochoice that has an ajax formcomponentupdatingbehavior. Now the updating behavior are trigered but the model of the radiochoice aren't being updated. Also on the basepage where you can trigger the modal window, I als

Re: [Wicket-user] AJAX modal window (1.2.5)and form

2007-03-26 Thread Nino Wael
m If you have nested forms it will fail. Nested forms are not supported in wicket 1.2. If you need separate form in modal window in 1.2, the safest bet is to use a page inside modal window. -Matej On 3/26/07, Nino Wael <[EMAIL PROTECTED]> wrote: > Hi > > I have a AJAX modal window

Re: [Wicket-user] getRealPath(wicket 1.2.4) any proper wicket wayto this?

2007-03-26 Thread Nino Wael
rvlet context directly from the application object. Eelco On 3/26/07, Nino Wael <[EMAIL PROTECTED]> wrote: > Hi > > Currently we are doing this within our wicket application: > > getWicketServlet().getServletContext().getRealPath("/"); > > Im wondering if the

[Wicket-user] Radio.getValue?

2007-03-26 Thread Nino Wael
Hi We are doing some extensive Jmeter testing, and have run into a technical problem regarding radios, which are the following: If you had 5 radios on a page at a given time, their value would have been radio1, radio2.. radio5. If you then pulled out radio number 4 then the list would be this,

Re: [Wicket-user] Radio.getValue?

2007-03-27 Thread Nino Wael
ould it be patched back into wicket 1.2.4? regards Nino -Oprindelig meddelelse- Fra: [EMAIL PROTECTED] på vegne af Nino Wael Sendt: ti 27-03-2007 08:22 Til: wicket-user@lists.sourceforge.net Emne: Radio.getValue? Hi We are doing some extensive Jmeter testing, and have run into a technica

Re: [Wicket-user] Japanese does not work inAutocomplete (Firefox/Windows)

2007-03-27 Thread Nino Wael
Any localized javascript operators in the autocomplete thingy(eg boolean=falsch instead of boolean=0 )? As I remember it only were a problem on IE 5.5. But thats something you could check. regards. -Oprindelig meddelelse- Fra: [EMAIL PROTECTED] på vegne af David Leangen Sendt: ti 27-0

Re: [Wicket-user] Radio.getValue?

2007-03-27 Thread Nino Wael
hmm, the same thing applies to checkbox component. -Oprindelig meddelelse- Fra: [EMAIL PROTECTED] på vegne af Nino Wael Sendt: ti 27-03-2007 12:15 Til: wicket-user@lists.sourceforge.net Emne: SV: Radio.getValue? Hmm I can see that radio are pretty simple on this, no constructors with

Re: [Wicket-user] Radio.getValue?

2007-03-27 Thread Nino Wael
Radio.getValue? I'm afraid I don't really understand your problem Nino. Eelco On 3/26/07, Nino Wael <[EMAIL PROTECTED]> wrote: > Hi > > We are doing some extensive Jmeter testing, and have run into a technical > problem regarding radios, which are the following: &

Re: [Wicket-user] Radio.getValue?

2007-03-29 Thread Nino Wael
pinging/bump Eelco to answer:) Fra: [EMAIL PROTECTED] på vegne af Nino Wael Sendt: on 28-03-2007 09:54 Til: wicket-user@lists.sourceforge.net Emne: SV: [Wicket-user] Radio.getValue? Ok, let me try to explain another way. If you create a page where you use

Re: [Wicket-user] AJAX modal window (1.2.5)and form

2007-03-29 Thread Nino Wael
. Not matter if its on a page or panel.. regards Nino Fra: [EMAIL PROTECTED] på vegne af Nino Wael Sendt: ma 26-03-2007 15:18 Til: wicket-user@lists.sourceforge.net Emne: SV: [Wicket-user] AJAX modal window (1.2.5)and form it's not a nested

Re: [Wicket-user] AJAX modal window (1.2.5)and form

2007-03-29 Thread Nino Wael
heheh obviously i am using onchange and not onchance:) Fra: [EMAIL PROTECTED] på vegne af Nino Wael Sendt: to 29-03-2007 13:42 Til: wicket-user@lists.sourceforge.net; wicket-user@lists.sourceforge.net Emne: Re: [Wicket-user] AJAX modal window (1.2.5)and form

Re: [Wicket-user] Radio.getValue?

2007-03-30 Thread Nino Wael
That was whý I suggested that we could have another constructor that took an Ichoicerender. There are tons of places in other wicket core components that supply a constructor that takes the ichoicerender. SO I think it should be ok? I would really like that ichoicerenderer would be supported

Re: [Wicket-user] Radio.getValue?

2007-04-02 Thread Nino Wael
:15 Til: wicket-user@lists.sourceforge.net Emne: Re: [Wicket-user] Radio.getValue? On 4/1/07, Nino Wael <[EMAIL PROTECTED]> wrote: I do know that radio and check are directly attached to their imodel. But the imodel does not provide an alternate value for them. I just dont

[Wicket-user] Performance test, how do you do it?

2007-04-02 Thread Nino Wael
Hi, based on something in another thread, (http://www.nabble.com/Flexible-markup-with-same-Java-classes-tf3471204.html#a9689979) I was curious on how people does performance test with wicket? On our project we are using JMeter which we use as a http request processor. Which we record requests

Re: [Wicket-user] Radio.getValue?

2007-04-03 Thread Nino Wael
gards Nino Fra: [EMAIL PROTECTED] på vegne af Igor Vaynberg Sendt: ma 02-04-2007 20:13 Til: wicket-user@lists.sourceforge.net Emne: Re: [Wicket-user] Radio.getValue? On 4/2/07, Nino Wael <[EMAIL PROTECTED]> wrote: |ichoicerenderer exists for two reasons. one is to generat

Re: [Wicket-user] Radio.getValue?

2007-04-03 Thread Nino Wael
some success using JMeter for testing a wicket application by using the regular expression support built into JMeter. My test script actually can use the "wicket:id" values and so far I'm getting good results. Let me know if you need more details. Thanks, Peter. On 4/3/07, Ni

Re: [Wicket-user] Radio.getValue?

2007-04-03 Thread Nino Wael
the mailing list. Meanwhile Nino - if you can send me separately a couple of different samples of HTML of the page you are trying to test, I can have a look to see if I have a solution using JMeter. Thanks, Peter. On 4/3/07, Nino Wael <[EMAIL PROTECTED]> wrote: We also can t

Re: [Wicket-user] Palette with sorted elements

2007-04-04 Thread Nino Wael
We had to do our "own" version of the palette. Im not sure if its outdated. But you can find the old source somewhere linked to in this thread: http://www.nabble.com/Palette-add-selected-option-tf2730861.html#a7672169 We also created a version where youselft can sort the items, let me know if

Re: [Wicket-user] Radio.getValue?

2007-04-01 Thread Nino Wael
o not traverse over a list of choices and try to look one up, they have the choice attached directly to them via imodel. -igor On 3/30/07, Nino Wael <[EMAIL PROTECTED]> wrote: > > That was whý I suggested that we could have another constructor that took > an Ichoicerender. There a

[Wicket-user] RadioGroup Broken(1.2.5+?/when using wantOnSelectionChangedNotifications)?

2007-04-26 Thread Nino Wael
Hi Something's not right with RadioGroup when using wantOnSelectionChangedNotifications or I am doing something wrong. When the same Radio are selected for the 2nd time, the radio becomes unselected and cannot be selected again until another radio has been selected. However the RadioGroup'

Re: [Wicket-user] RadioGroup Broken(1.2.5+?/when usingwantOnSelectionChangedNotifications)?

2007-04-26 Thread Nino Wael
bump anyone for answer? Fra: [EMAIL PROTECTED] på vegne af Nino Wael Sendt: to 26-04-2007 09:25 Til: wicket-user@lists.sourceforge.net Emne: [Wicket-user] RadioGroup Broken(1.2.5+?/when usingwantOnSelectionChangedNotifications)? Hi Something's not right

Re: [Wicket-user] RadioGroup Broken(1.2.5+?/whenusingwantOnSelectionChangedNotifications)?

2007-04-27 Thread Nino Wael
Igor please answer:) Fra: [EMAIL PROTECTED] på vegne af Nino Wael Sendt: to 26-04-2007 16:01 Til: wicket-user@lists.sourceforge.net; wicket-user@lists.sourceforge.net Emne: Re: [Wicket-user] RadioGroup Broken(1.2.5+?/whenusingwantOnSelectionChangedNotifications

Re: [Wicket-user] RadioGroup Broken(1.2.5+?/when usingwantOnSelectionChangedNotifications)?

2007-04-27 Thread Nino Wael
. Nino, if you think it's a bug, would you mind opening up a JIRA issue for it? Thanks, Eelco On 4/26/07, Nino Wael <[EMAIL PROTECTED]> wrote: > Hi > > Something's not right with RadioGroup when using > wantOnSelectionChangedNotifications or I am doing something wr

Re: [Wicket-user] RadioGroup Broken(1.2.5+?/when usingwantOnSelectionChangedNotifications)?

2007-04-28 Thread Nino Wael
usingwantOnSelectionChangedNotifications)? Been busy on the list again. Nino, if you think it's a bug, would you mind opening up a JIRA issue for it? Thanks, Eelco On 4/26/07, Nino Wael <[EMAIL PROTECTED]> wrote: > Hi > > Something's not right w

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

2006-05-22 Thread Nino Wael
ne it again:) browser crashes/creating a custom component   please provide us with a quickstart project so we can easily start it and see whats going on. -Igor On 5/19/06, Nino Wael < [EMAIL PROTECTED]> wrote: Dos'nt anybody have a comment?

[Wicket-user] RadioGroup and Listview

2006-06-01 Thread Nino Wael
Hi   Im’ having some trouble setting the selected radio on my RadioGroup.   My Radios are held within a listview and im wanting to set the selected radio when constructing my form. However when setting my model after adding the listview to the radiogroup no radio is selected, so my que

SV: [Wicket-user] RadioGroup and Listview

2006-06-01 Thread Nino Wael
-Igor On 6/1/06, Nino Wael <[EMAIL PROTECTED] > wrote: Hi Im' having some trouble setting the selected radio on my RadioGroup. My Radios are held within a listview and i

RE: [Wicket-user] RadioGroup and Listview

2006-06-02 Thread Nino Wael
Ok here it is, the page that holds the component that fails to load the model is the third page, and the component are called radiodropdown. I hope you can abstract from all the other stuff I had to put in there, we’re doing a lot of stuff with wicket/hibernate.   So you need to click the

Re: [Wicket-user] RadioGroup and Listview

2006-06-03 Thread Nino Wael
-user] RadioGroup and Listview isnt it embarrassing when you forget to attach the attachment? :) -Igor On 6/2/06, Nino Wael <[EMAIL PROTECTED] > wrote: Ok here it is, the page that holds the com

Re: [Wicket-user] RadioGroup and Listview

2006-06-03 Thread Nino Wael
sourceforge) does not allow zip attachements. Could you please file an issue (bug) with that attachement? Good for tracking anyway. Eelco On 6/2/06, Nino Wael <[EMAIL PROTECTED]> wrote: > > >

Re: [Wicket-user] RadioGroup and Listview

2006-06-06 Thread Nino Wael
IL PROTECTED] On Behalf Of Nino Wael Sent: 3. juni 2006 18:24 To: wicket-user@lists.sourceforge.net Subject: SV: [Wicket-user] RadioGroup and Listview   Ok here it is then:)   http://sourceforge.net/tracker/index.php?func=detail&aid=1500128&group_id=119783&atid=684975

[Wicket-user] PageLink wanting to check model before allowing popup

2006-06-07 Thread Nino Wael
Hi I have a popup button where I want to check misc stuff on my form model before I allow the popup to actually popup the new page. I've tried to override the onClick event on the pageLink control but it still pops a page no matter what. Im not sure if I am using the correct approach. Regar

Re: [Wicket-user] PageLink wanting to check model before allowingpopup

2006-06-08 Thread Nino Wael
popup when the link is rendered? If the latter is the case - and I would be surprised if it is not - you can just set/ unset popup settings, or tweak getPopupJavaScript to what you need. Eelco On 6/7/06, Nino Wael <[EMAIL PROTECTED]> wrote: > Hi > > I have a popup button where I

Re: [Wicket-user] Wicket

2006-06-08 Thread Nino Wael
Hi Gangadhar     Im using this to attach a word document           WebResponse response = (WebResponse) getResponse();     response.setContentType("application/msword");

Re: [Wicket-user] PageLink wanting to check model beforeallowingpopup and info

2006-06-08 Thread Nino Wael
- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Nino Wael Sent: 8. juni 2006 09:43 To: wicket-user@lists.sourceforge.net Subject: Re: [Wicket-user] PageLink wanting to check model beforeallowingpopup Thanks, the latter is precisely what I needed(I set/unset the popup settings

[Wicket-user] PageLink onClick, never gets called?

2006-06-09 Thread Nino Wael
Hi Im a little curious since I recall doing this earlier.. Now it seems that PageLink onClick never gets called why is that? See snip below Html: Java snip: myReport = new PageLink("openword", new IPageLink() { public Page getPage() {

  1   2   3   >