AjaxLazyLoadPanel is block other page render while processing

2014-02-10 Thread MadasamySankarapandian
We have using 6.6.0 in our application. In home page we using AjaxLazyLoadPanel to load the widgets data, It take long time to render the widget. When loading widget, if click the other page, the page is not rendered immediately. After completed AjaxLazyLoadPanel process then only the clicked

Re: I have not found file where per session data get store under work Folder in wicket application

2014-02-10 Thread Martin Grigorov
Hi, Which web container do you use ? Where did you look at ? Martin Grigorov Wicket Training and Consulting On Sat, Feb 8, 2014 at 10:02 AM, Sharad Raut raut.sha...@gmail.com wrote: -- View this message in context:

Re: AjaxLazyLoadPanel is block other page render while processing

2014-02-10 Thread Martin Grigorov
Hi, See http://markmail.org/message/4gxbwbhoqojutox6 Martin Grigorov Wicket Training and Consulting On Mon, Feb 10, 2014 at 9:31 AM, MadasamySankarapandian madas...@mcruncher.com wrote: We have using 6.6.0 in our application. In home page we using AjaxLazyLoadPanel to load the widgets

Re: Wicket Wizzard Question / Custom Overview Bars

2014-02-10 Thread Patrick Davids
Hi Paul, thanx a lot for your detailed answer. :-) Helped much, but my primary question was, why the overviewbar is on the left hand side, not on the top. Possibly the header is what I am looking for, showing the current step information(?). But then, I still do not know, what the overviewbar

Re: Wicket Wizzard Question / Custom Overview Bars

2014-02-10 Thread Sven Meier
Hi Patrick, usually a wizard has an overview on the left side: http://en.wikipedia.org/wiki/Wizard_%28software%29 Regards Sven On 02/10/2014 10:04 AM, Patrick Davids wrote: Hi Paul, thanx a lot for your detailed answer. :-) Helped much, but my primary question was, why the overviewbar is

RE: Wicket Wizzard Question / Custom Overview Bars

2014-02-10 Thread Richter, Marvin
It's just a design decision ... the default design is that the steps are displayed on the left side (like in Jira's Wizard for example). But like Paul described you are free to change this like it fits for you. Best Regards, Marvin Richter -Original Message- From: Patrick Davids

About getMarkupType() from MarkupContainer

2014-02-10 Thread Decebal Suiu
Hi I have an issue on wicket-jade (https://github.com/decebals/wicket-jade/issues/1) and I cannot find a nice solution. The use case is that I have an EmbeddedPanel (html markup) in a JadePanel (jade markup) and when I try to run my test I get a MarkupNotFoundException: Failed to find markup

Palette - sort on change

2014-02-10 Thread smilingowl
Hello, i am looking for a way to sort a palette (available and selected items) automatically on change. I found this thread from 2010 (http://apache-wicket.1842946.n4.nabble.com/automatic-palette-sorting-td1894198.html). Since the thread is 3 years old, i wanted to know if there is a more elegant

Re: About getMarkupType() from MarkupContainer

2014-02-10 Thread Decebal Suiu
Forget about. I resolved my problem much easy. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/About-getMarkupType-from-MarkupContainer-tp4664340p4664343.html Sent from the Users forum mailing list archive at Nabble.com.

Re: The AjaxSubmitLink does not respond after migrating to wicket 6

2014-02-10 Thread Sheane
Did you have any luck with the migration? Im currently facing the same issue, none of my Ajax components seems to be working. Should we do any configuration changes? -- View this message in context:

Re: Modular Wicket Application

2014-02-10 Thread IowA
You can get sample project from github: https://github.com/ReginaldasR/wicket-modular 2014-02-09 18:41 GMT+02:00 IowA [via Apache Wicket] ml-node+s1842946n4664328...@n4.nabble.com: You can get sample project from github: https://github.com/ReginaldasR/wicket-modular

Re: Modular Wicket Application

2014-02-10 Thread IowA
You can get sample project from github: https://github.com/ReginaldasR/wicket-modular -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Modular-Wicket-Application-tp4664317p4664328.html Sent from the Users forum mailing list archive at Nabble.com.

How to implement an auto-save behavior

2014-02-10 Thread Boris Goldowsky
I’m attempting to migrate an auto-saving behavior from wicket 1.5 to wicket 6. In wicket 1.5 it worked by doing something like this every 30 seconds to loop through auto-save-enabled forms on the page and submit them: $(form.ajaxAutoSave).each(function() { var form = $(this);

Re: How to implement an auto-save behavior

2014-02-10 Thread Ernesto Reinaldo Barreiro
Maybe Wicket.Ajax.Call.subitMultipartForm? On Mon, Feb 10, 2014 at 4:56 PM, Boris Goldowsky bgoldow...@cast.orgwrote: I'm attempting to migrate an auto-saving behavior from wicket 1.5 to wicket 6. In wicket 1.5 it worked by doing something like this every 30 seconds to loop through

Re: How to implement an auto-save behavior

2014-02-10 Thread Boris Goldowsky
Thanks, but that also results in Wicket.Ajax.Call.submitMultipartForm is not a function”. I suspect the answer is to get the parameters set up correctly and then arrange for the result of getCallbackScript() to be called periodically. If someone else has done something like this and has a

Re: How to implement an auto-save behavior

2014-02-10 Thread Ernesto Reinaldo Barreiro
Is not a function? If I look at the source code I see something like submitMultipartForm = function(context) { }, On Mon, Feb 10, 2014 at 5:41 PM, Boris Goldowsky bgoldow...@cast.orgwrote: Thanks, but that also results in Wicket.Ajax.Call.submitMultipartForm is not a function. I suspect

Re: How to implement an auto-save behavior

2014-02-10 Thread Martin Grigorov
Hi, To submit a form all you need to provide to the object you pass to Wicket.Ajax.ajax() is the 'f' attribute: Wicket.Ajax.post({ u: 'url/to/AjaxFormSubmitBehavior', f: 'formId', sc: 'optionalSubmittingComponentId'}); I will update the Ajax chapter in the Reference guide soon to explain the JS

Re: Palette - sort on change

2014-02-10 Thread Martin Grigorov
Hi, I think there is no better solution yet. Feel free to create a ticket for improvement. With a patch would be awesome! Martin Grigorov Wicket Training and Consulting On Mon, Feb 10, 2014 at 2:50 PM, smilingowl smilingow...@gmail.com wrote: Hello, i am looking for a way to sort a palette

Re: AjaxLazyLoadPanel is block other page render while processing

2014-02-10 Thread MadasamySankarapandian
I am sorry. I have solved this problem to improve getData() performance. On Tue, Feb 11, 2014 at 9:36 AM, MadasamySankarapandian madas...@mcruncher.com wrote: Thanks for your suggestion. But problem remains same. *My html code like * . . *div wicket:id=label/div* . . *My java code