update a shoppinglist

2011-12-25 Thread lang
I'm new to Wicket and now creating my first application. I find it difficult to decide which repeater i should choose on a shopping list where a user can change the number of items he or she wants. I choose a DataView because it can be used with paging. However I can't find out how to read the valu

Dataview TextField problem

2011-12-27 Thread lang
I made a dataview with a textfield. Whatever I do, the screen value is never read. I looked for hours on the internet and it drives me crazy.. .. please help. dataView = new DataView("pageable", new OpdrachtVOProvider()){ private static final long serialVersionUID = 1L;

no input when using a link

2012-02-18 Thread lang
I made a login form. The user can click on the link "I forgot my password" In the program I want to read the input email address field. But it is always empty. When I use the ok button i can read the email field succesfully. What to do? -- View this message in context: http://apache-wicket.18429

Datatable with selection row below the header

2012-05-03 Thread lang
I need a table like datatable, only one difference: t must has input fields on the second row where the user can enter his selections. Who has an example for this? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Datatable-with-selection-row-below-the-header-tp4605

Filtercolumn and bigdecimal formatter

2012-05-31 Thread lang
Hi, I spent hours and hours but can't find any solution: I have a datatable with a filter. I want to filter on a BigDecimal field. However the output is presented as is. For example euro 1 instead of 1,00 euro. I always want to show the amount with two decimals. Who can help? -- View this mes

Filtercolumn and bigdecimal formatter

2012-05-31 Thread lang
Hi, I spent hours and hours but can't find any solution: I have a datatable with a filter. I want to filter on a BigDecimal field. However the output is presented as is. For example euro 1 instead of 1,00 euro. I always want to show the amount with two decimals. Who can help? -- View this mes

Re: Filtercolumn and bigdecimal formatter

2012-06-01 Thread lang
I make my column with @SuppressWarnings({ "unchecked", "rawtypes" }) private TextFilteredPropertyColumn getVerkoopprijs() { return new TextFilteredPropertyColumn( new Model("Verkoopprijs"), "verkoopprijs", "verkoopprijs") {

inputcolumn for Filtercolumn in datatable uses to much space

2012-06-01 Thread lang
Default the input uses size=""20" but for some colums that is too much. How can i specify the size from Java? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/inputcolumn-for-Filtercolumn-in-datatable-uses-to-much-space-tp4649638.html Sent from the Users forum mailing l

Replace goandclear with images

2012-06-01 Thread lang
How can I replace the text in the goAndClearFilter with a png? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Replace-goandclear-with-images-tp4649640.html Sent from the Users forum mailing list archive at Nabble.com.

Re: Filtercolumn and bigdecimal formatter

2012-06-01 Thread lang
It worked! Thanks -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Filtercolumn-and-bigdecimal-formatter-tp4649624p4649646.html Sent from the Users forum mailing list archive at Nabble.com. - To unsubs

Need a link in a dataview filter column

2012-06-03 Thread lang
Hi, in my datatable i use different columns with filters. One of those columns contain a invoice number I want to show a pdf if a user click this row Example Order invoice 1001 123401<--- This column must be clicable. After click it must open a pdf with 123401.pdf Who can help? -

Re: Need a link in a dataview filter column

2012-06-03 Thread lang
Hi, first; i need the download option for each row in the table, Not in the filter. In my Java program i did: @SuppressWarnings({ "unchecked", "rawtypes", "serial" }) public TextFilteredPropertyColumn getLink(String header,String sort,String field) { return new Tex

Ajax does not update my webcontainer

2012-06-27 Thread lang
I have a screen with a part for existings users and a part for new users. One can switch by clicking a link 3 in the existingUserthere is a link for changing to newUser (and vv) Initial i show both parts in orde to see any reaction but it does no react at all I my dos box i see: behavior not enabl

Ajax hide/show does not work

2012-06-27 Thread lang
I do not understand this. I made a panel that must be hidden on click or show up on another Hiding works the first time then never again. SHow never works What do i wrong?? == Wicket Examples - upload Test # Show 1 # Show 2 Kijk eens naar Panel1 Je kijkt naar pane

Re: Ajax hide/show does not work

2012-06-28 Thread lang
It works now, thanks! -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Ajax-hide-show-does-not-work-tp4650267p4650271.html Sent from the Users forum mailing list archive at Nabble.com. - To unsubscribe

image from outside web application directory

2012-07-04 Thread lang
I need to show images from c:/pictures on my website. I searched and searched and there should be something on old.nabble but that link is giving null pointer results. Who can help? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/image-from-outside-web-application-dir

Re: image from outside web application directory

2012-07-05 Thread lang
Martin could you give me an example of this? I my website i want to upload jpgt pictures from clients. I already store them on another location but i can't show the pictures on my website -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/image-from-outside-web-applicatio

Re: image from outside web application directory

2012-07-05 Thread lang
Martin could you give me an example of this? I my website i want to upload jpgt pictures from clients. I already store them on another location but i can't show the pictures on my website -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/image-from-outside-web-applicatio

How to read message properties that has parameters into a program

2012-07-08 Thread lang
I have a program that's gonna send an email confirmation to a customer. The email text is stored in a property file. How can I read these values with substitution parameters? I'm aware of getString("key") but that has has parameters Example of one property: mail01=Dear {customer}, we confirm

Re: DatePicker does not work in IE9

2012-07-10 Thread lang
Try this in your html document on the first line http://www.w3.org/1999/xhtml"; xmlns:wicket="http://wicket.apache.org";> -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/DatePicker-does-not-work-in-IE9-tp4650428p4650429.html Sent from the Users forum mailing list arc

How to set initial value and read value from a ValueMap

2012-07-10 Thread lang
I created a ajax radiogroup. It works fine but.. how can i set it initial value and how can I set/read the outcome? In other words: what do I do in OpdrPageInput?? Example code: setDefaultModel(new CompoundPropertyModel(input)); form.add(new AjaxRadioPanel("eerstewerkdag", getWerkdagList(), "name

Radiobutton example with Ajax needed

2012-07-12 Thread lang
I desperatly need a ajax radio button. I tried some example like the one from http://reachmnadeem.wordpress.com/2011/08/15/wicket-ajax-radio/ but nothing is working like I want it to do. My radiobuttons must have an initial value and i want to know how to read that value (the display value has ano

Re: Radiobutton example with Ajax needed

2012-07-12 Thread lang
It helped me! Thanks -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Radiobutton-example-with-Ajax-needed-tp4650454p4650479.html Sent from the Users forum mailing list archive at Nabble.com. - To unsu

Datatable with filter: string inpput for numeric columns

2012-07-17 Thread lang
I have a datatable with a filter. It works fine, but.. I have numeric columns. I want the user to enter a String instead of a number. This is because we add more functions to the input so the user can enter more filter commands like >10&<20 Now this is not possible in the filter. Who can help Exa