Re: maven repository for JQWicket

2011-11-01 Thread Decebal Suiu
See http://code.google.com/p/jqwicket/#Quickstart_for_maven_users repository idgooglecode/id urlhttp://jqwicket.googlecode.com/svn/m2-repo/releases//url /repository dependency groupIdcom.google.code.jqwicket/groupId artifactIdjqwicket/artifactId version0.7/version

Re: Stateless Wicket and Ajax

2011-09-01 Thread Decebal Suiu
Hi I have the same problem unable to find component with path... (a DropDownChoice with StatelessAjaxFormComponentUpdatingBehavior(onchange) on each item in a repeater ). It's now a solution without to modify wicket sources (probably with the wicket 1.5 version)? Thanks, decebal -- View this

DataViw double clickable rows and ModalWindow

2011-08-03 Thread Decebal Suiu
Hello I have a panel with a DataTable and, in newRowItem() I added an AjaxEventBehavior(ondblclick). Everything works fine if I add the panel in a WebPage but doesn't work in a ModalWindow. It's a bug or I do something wrong? Any advice it's welcome. Thanks, Decebal -- View this message in

need some advice

2011-06-23 Thread Decebal Suiu
Hello I have some trouble with my next wicket application. I want to create a new ecommerce application. I have the store and the admin parts. Initial, the store and admin parts are two distinct (maven) modules and two distinct application (war files) but I realize that it's hard to develop new

Re: KonaKart shopping cart integration

2010-08-05 Thread Decebal Suiu
Another good options is http://www.broadleafcommerce.org. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Proposal-HierarchicConverterLocator-an-IConverterLocator-that-adheres-to-the-class-hierarchy-tp2311126p2315426.html Sent from the Wicket - User mailing list

Re: handling error in DataProvider

2010-06-29 Thread Decebal Suiu
Thanks again, I will try to profile my code. Another question is where I can clean my flags with errors (I keep in session a Map with widget's id as key and Exception as value)? I understand that onAfterRender method is not a good candidate because it's called on abort exception also. -- View

Re: handling error in DataProvider

2010-06-23 Thread Decebal Suiu
The problem with RestartResponsePage approach is that when multiple data tables (for example last 2 tables from 10) are in error I have a performance problem. Is it true my observation? Thanks, Decebal -- View this message in context:

handling error in DataProvider

2010-06-22 Thread Decebal Suiu
Hi I have a panel (dashboard) with few data tables (widgets). When an error appears in a data table model (data provider) I want to inform the user about error, replacing the table component with a error panel. It's possible to achieve this functionality in wicket or you can suggest me another

Re: handling error in DataProvider

2010-06-22 Thread Decebal Suiu
Hi igor, You say that in IDataProvider.iterator(..) if an error occurs I throw a RestartResponseException (probably with exception message as PageParameter). But my panel has many data tables. How can I use your approach if errors occur simultaneous in many data tables? Thanks, Decebal --

Re: TabbedPanel with AjaxSelfUpdatingTimerBehavior

2010-06-10 Thread Decebal Suiu
Hello Ernesto, I resolved the problem. The AjaxSelfUpdatingTimerBehavior was added by me on the panel returned by the ITab.getPanel() method. I put the behavior on a child of the tab panel and it works. Do you have an explanation why I retrieve PageExpiredException: No behavior listener found

Re: TabbedPanel with AjaxSelfUpdatingTimerBehavior

2010-06-08 Thread Decebal Suiu
I tried your advice and I keep the timer behavior outside the tab, in MyTabbedPanel. In the refreshable panel I register a listener with MyApplication.get().addRefreshableComponent(Duration,Component). When I select the tab with the refreshable panel all works fine but when I switch the tab I

Re: TabbedPanel with AjaxSelfUpdatingTimerBehavior

2010-06-08 Thread Decebal Suiu
Hello Ernesto I understood now. I single AbstractAjaxTimerBehavior on timerContext component and onTimer I will iterate through all visible components from TabbedPanel that implements ITimerListener. One problem is that DashboardsTab (for example) contains many auto refreshable widget panels

Re: TabbedPanel with AjaxSelfUpdatingTimerBehavior

2010-06-07 Thread Decebal Suiu
When I switch to other tab I received a PageExpiredException: org.apache.wicket.protocol.http.PageExpiredException: No behavior listener found with behaviorId 0; Component: [MarkupContainer [Component id = panel]] Any idea how can I remove/stop the AjaxSelfUpdatingTimerBehavior? I created a

Re: TabbedPanel with AjaxSelfUpdatingTimerBehavior

2010-06-07 Thread Decebal Suiu
Thanks, I will try. The problem with your approach is that in our application each tab is a section that can be added using spring framework (modular architecture). For example the dashboards tab has many widget panels, each widget panel is auto refreshable (different time for different widget).

TabbedPanel with AjaxSelfUpdatingTimerBehavior

2010-06-04 Thread Decebal Suiu
Hello I use AjaxSelfUpdatingTimerBehavior on one tab and when switching to another tab I want to stop it. The AjaxSelfUpdatingTimerBehavior will be active only if this tab is selected (start timer behavior when select the tab and stop it when select other tab). Any help is welcome. Thanks,

add link in TabbedPanel header

2010-03-12 Thread Decebal Suiu
Hello, I need a link (Add new tab) to be placed in the TabbedPanel header (probably in the div with class tab-row), to the end of tabs. How can I do this? Thanks, Decebal - To unsubscribe, e-mail:

two questions about wizard

2009-11-19 Thread Decebal Suiu
Hello, I have two question about the Wizard from wicket: 1) I have a wizard with two steps A and B both contains a specific panel with validators. As I see, the validation is done on 'Next' button. Clicking 'Next' in the first step will take me to the second one only if everything is ok. But on

wizard questions

2009-11-19 Thread Decebal Suiu
Hello, I have two question about the Wizard from wicket: 1) I have a wizard with two steps A and B both contains a specific panel with validators. As I see, the validation is done on 'Next' button. Clicking 'Next' in the first step will take me to the second one only if everything is ok. But on

Re: Reporting Framework Wicket

2009-10-15 Thread Decebal Suiu
Hello, We use Wicket with NextReports (http://www.next-reports.com/) and Jasper. Basically, in Wicket you will have logic for the form that will fill report parameters. For Jasper we also have a logic for edit parameters (we added more functionality to parameter definition that we could not

wicket and livequery (jquery plugin)

2009-09-17 Thread Decebal Suiu
Hello, I'm trying to add a hover effect for the actions column (icon with popup menu panel on mouseover) in an ajax table. The problem is that jQuery does not sense the new dom elements while I'm retrieving them with Wicket Ajax - by clicking (header sort link), so I'm using jquery Live query

<    1   2