Re: AJAXIFY Palette: Can't get to the Recorder

2010-03-30 Thread wicketnewuser
Hi i tried doing this it doesn't like adding AjaxFormComponentUpdatingBehavior . I thought when you meant AjaxFormComponentUpdatingBehavior by whateverbehaviour. i even added onupdate method that didn't help too. still getting null when doing pallet.getRecorderComponent. Please help

Re: Using email in SignInPanel Username

2010-02-11 Thread wicketnewuser
own - even copying the code and modifying it. -- Jeremy Thomerson http://www.wickettraining.com On Thu, Oct 29, 2009 at 1:43 AM, wicketnewuser swarn...@hotmail.com wrote: Any one know what the solution for this is wicketnewuser wrote: I'm trying to use wicket signinpanel

Re: not addding componet in case of error

2009-12-14 Thread wicketnewuser
It looks like you still have to add all the componet in my case reportresultpanel and others to tableAddChart . In my case if error condition and i'm just adding tableAndChartContainer. If complains about reportresultpanel being in the markup not being added. Unable to find component with id

Re: not addding componet in case of error

2009-12-14 Thread wicketnewuser
never mind please. it did work. I just forgot to set the visibility to false for he container wicketnewuser wrote: It looks like you still have to add all the componet in my case reportresultpanel and others to tableAddChart . In my case if error condition and i'm just adding

Re: Listview in a listview refresh with AjaxLink don't work

2009-11-15 Thread wicketnewuser
I don't see your up link in the html markup. Doesn't look like you have enough info here. If you are moving your question row up are you updating the list for the listview. Also you are updating questionpanel with ajax target . I think it would have to be your listview. I would use ajaxsubmitlink

Re: Updating a Dynamic Image with AJAX (and JFreeChart)

2009-11-13 Thread wicketnewuser
I have same situation. I'm not able to refresh my image. But if i view the image i do get refreshed image Here is my code. Based on my dropdownchoice it should make new Jfreechart and the image should refresh. I couldn't get it working so i wrapped the image with in a span but it still doesn't

Re: Datepicker model change problem

2009-11-12 Thread wicketnewuser
Hi Anyone has any idea about this wicketnewuser wrote: I have a page with date picker that picks the date, DropdownChoice for hour and minute. When I click today button I change the model in onsubmit method. It is suppose to change the form value in datepicker, hour and minute to today

Re: model update in moveuplink and movedownlink onclick

2009-11-08 Thread wicketnewuser
); } } }; } wicketnewuser wrote: Is there anyway that you can update model before you move the item up or down using moveuplink and movedownlink in listview. My goal is to save the input data to the model so that I don't loose use input on the item before moving the item. I did try to extend

Re: Using email in SignInPanel Username

2009-10-29 Thread wicketnewuser
Any one know what the solution for this is wicketnewuser wrote: I'm trying to use wicket signinpanel . When and choose remember me checkbox and use email address in username (eg@ttt.com , next time when i come it it just remembers abc as user name instead of a...@ttt.com). It seems

Re: Component parent null after replace

2009-10-23 Thread wicketnewuser
Hi I have similiar situation but i'm using autonomous inner class final AjaxFallbackDefaultDataTable datatable = new AjaxFallbackDefaultDataTable(trafficreportlistdatatable, columns, new ReportListProvider(Traffic, include), 8); add(datatable); final

Re: AjaxFallbackLink problem on Internet Explorer 6

2009-10-22 Thread wicketnewuser
Hi tried to follow this and having problem with it . Could someone please let me know what I'm doing wrong Here is the code package com.swishmark.tugboat; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import org.apache.wicket.PageParameters; import

Re: AjaxFallbackLink problem on Internet Explorer 6

2009-10-22 Thread wicketnewuser
of what I listed earlier as showMineSpan.setVisible(true); showAllSpan.setVisible(false); wicketnewuser wrote: Hi tried to follow this and having problem with it . Could someone please let me know what I'm doing