Re: Free Wicket guide now available!

2013-03-27 Thread Duy Do
For additional commands, e-mail: users-h...@wicket.apache.org -- Duy Do

Re: inmethod grid problem in IE8

2011-11-10 Thread Duy Do
After upgrade the app to version 1.5.2, the problem has gone. Cheers, Duy On Mon, Sep 19, 2011 at 3:27 PM, Martin Grigorov mgrigo...@apache.orgwrote: Also try with IE9/10. They may give you better error description. On Sun, Sep 18, 2011 at 1:18 PM, Duy Do doquoc...@gmail.com wrote: Hi

Re: SFTP Wicket

2011-10-25 Thread Duy Do
You can try FTP/SFTP component of Apache Camel http://camel.apache.org/ftp.html A simple tutorial can be found at http://blog.jayway.com/2010/08/12/dynamic-ftp-client-using-apache-camel-and-spring/ On 10/25/11 7:18 PM, Arjun Dhar wrote: The tree part i have, actually i was looking for the

Re: How to update a palette?

2011-09-30 Thread Duy Do
to use a palette because the order of the items is important! Any help is highly appreciated. It's getting pretty frustrating. Cheers, w -- Duy Do

Re: inmethod grid problem in IE8

2011-09-18 Thread Duy Do
Any suggestion? On 9/17/2011 10:59 AM, Duy Do wrote: Hi Wicketers, I have a problem with inmethod-grid in IE8 as below error. This issue cause the grid display incorrectly. Is it a bug? And how to fix it? Webpage error details User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1

Re: inmethod grid problem in IE8

2011-09-18 Thread Duy Do
: which wicket, inmethod-grid versions are you using? Is the problem reproducable with the wicketstuff inmethod grid examples web app too? Attila 2011/9/18 Duy Dodoquoc...@gmail.com Any suggestion? On 9/17/2011 10:59 AM, Duy Do wrote: Hi Wicketers, I have a problem with inmethod-grid in IE8

inmethod grid problem in IE8

2011-09-16 Thread Duy Do
Hi Wicketers, I have a problem with inmethod-grid in IE8 as below error. This issue cause the grid display incorrectly. Is it a bug? And how to fix it? Webpage error details User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; EasyBits GO v1.0; SLCC2; .NET CLR

Re: Apache Wicket releases Wicket 1.5

2011-09-07 Thread Duy Do
Big news! You made my day. Thanks a lot for your great working. On 9/8/11 5:17 AM, Martijn Dashorst wrote: The Apache Wicket team is proud to announce the immediate availability of the newest release of their component oriented open source Java web framework. Apache Wicket 1.5 has been in

How to get items of inmethod grid to export as excel file

2011-08-29 Thread Duy Do
Hi Wicketers, I have to get all items of the inmethod grid to export as excel file. Is it possible? Thanks, Duy

Re: How to get items of inmethod grid to export as excel file

2011-08-29 Thread Duy Do
Thanks Martin. On 8/29/11 4:03 PM, Martin Grigorov wrote: See https://github.com/wicketstuff/core/tree/master/jdk-1.5-parent/wicket-poi-parent https://github.com/wicketstuff/core/wiki/POI On Mon, Aug 29, 2011 at 10:34 AM, Duy Dodoquoc...@gmail.com wrote: Hi Wicketers, I have to get all

ModalWindow

2011-07-12 Thread Duy Do
Hi all, When submit a form in modal window, browsers display a popup with message: /Are you sure want leave this page?/ How we disable this popup? Thanks, Duy

Re: ModalWindow

2011-07-12 Thread Duy Do
Thank you for your quick reply. I already used AjaxButton but it still show that popup. Do we have other options? Duy On 7/12/2011 3:27 PM, Martijn Dashorst wrote: Use an AjaxSubmitButton instead of a normal SubmitButton (or AjaxSubmitLink...). You submit your form with a normal submit

Re: ModalWindow

2011-07-12 Thread Duy Do
It works after I added Wicket.Window.unloadConfirmation = false; into the page. Thanks for your helps. Cheers, Duy On 7/12/2011 3:43 PM, Ernesto Reinaldo Barreiro wrote: Maybe you are getting an Exception which is redirecting you to an error page... which can also produce what you

inmethod-grid bugs?

2011-07-06 Thread Duy Do
Hi all, I'm working on inmethod-grid to add a filter on top of it. Everything works fine if I don't navigate through other pages of the grid. Once I go to other page and filter the results, I get exception: java.lang.ClassCastException: com.inmethod.grid.common.AbstractPageableView$Query

Re: inmethod-grid bugs?

2011-07-06 Thread Duy Do
Hi Martin, I use version 1.4.17. It's same in version 1.5-SNAPSHOT on wicketstuff. Thank you for your quick response. On 7/6/2011 2:07 PM, Martin Grigorov wrote: Which version do you use ? On Wed, Jul 6, 2011 at 9:02 AM, Duy Dodoquoc...@gmail.com wrote: Hi all, I'm working on

Re: inmethod-grid bugs?

2011-07-06 Thread Duy Do
I just used DataProviderAdapter to wrap a custom SortableDataProvider with PagingToolbar. As your suggestion, I will try to override AbstractPageableView.wrapQuery() to wrap the current IQuery into IGridQuery. Thanks, Duy On 7/7/2011 5:00 AM, Attila Király wrote: My guess is that you are

Re: inmethod-grid generics

2011-07-03 Thread Duy Do
Attila, thank you for your information. On 7/3/11 1:37 AM, Attila Király wrote: Hi Duy, Generics were added only to the 1.5 branch of inmethod-grid. There is no plan to backport this to the 1.4 branch. Attila 2011/7/2 Duy Dodoquoc...@gmail.com Hi wicketers, I found inmethod-gric generics

inmethod-grid generics

2011-07-02 Thread Duy Do
Hi wicketers, I found inmethod-gric generics for wicket 1.5 on wicketstuff but can not find one for wicket 1.4.x. Is there any maven repo for 1.4.x? Thanks, Duy - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org

Re: Handle selection changing on Palette

2011-06-19 Thread Duy Do
Hi Andrea, It works now. Thanks for your help. Cheers, Duy On 6/18/11 7:55 PM, Andrea Del Bene wrote: HI, have you tried with AjaxFormComponentUpdatingBehavior? As Palette's JavaDoc says: Ajaxifying the palette: The palette itself cannot be ajaxified because it is a panel and therefore

Handle selection changing on Palette

2011-06-17 Thread Duy Do
Hi Wicketers, How can I handle selection changing on Palette? I would like to save item into database once it is selected from Available list. Thanks, Duy - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For

Re: FileUploadField.getClientFileName() doesn't give Absolute Path

2011-05-11 Thread Duy Do Quoc
You can use getInputStream() of FileUpload Duy On 5/11/11 6:39 PM, eugenebalt wrote: Another issue with the FileUpload, When I try to retrieve the specified filename with getClientFileName(), I only get the name of the file, without the absolute path. So I can't construct a java.io.File

Re: Slow wicket page on specific server

2010-10-05 Thread Duy Do
It seems that you have problems with Quartz jobs schedule. thread was blocked during processing the request. Maybe, you try to disable Quartz and run web app again to check. On Tue, Oct 5, 2010 at 10:07 PM, Doug Leeper douglee...@yahoo.com wrote: Was this thread dump taken while you were

Re: Coding - On Software Design Process

2010-10-02 Thread Duy Do
Look really nice. Could you please publish an example chapter? Cheers, Duy On Sat, Oct 2, 2010 at 12:31 PM, nino martinez wael nino.martinez.w...@gmail.com wrote: looks nice.. I'll grab a copy too :) It'll probably stack nice along side uncle bobs clean code... 2010/10/2 Jonathan Locke

Re: Add/Remove Dynamic FormComponent In RepeatingView

2010-08-06 Thread Duy Do
rememberOrReuseAndProvideFeedback( Object key, String id, T formComponent, IBehavior... behaviors) { formComponent.add(behaviors); formComponent.setOutputMarkupId(true); return rememberOrReuse(key, id, FeedbackStyler.add(formComponent)); } } ** Martin 2010/8/6 Duy Do doquoc...@gmail.com: Hi all

Add/Remove Dynamic FormComponent In RepeatingView

2010-08-05 Thread Duy Do
Hi all, For the moment I can add/remove a form component in RepeatingView on the fly, but every time I add or remove a form component, the model values of previous form component are lost. How can I keep them in RepeatingView? Thanks, Duy

Re: Error integrating with Hibernate and Spring

2010-07-27 Thread Duy Do
You can see here http://duydo.com/spring-3-hibenate-3-5-wicket-maven/ for more detail. On Mon, Jul 26, 2010 at 3:52 PM, Luther Baker lutherba...@gmail.com wrote: I'm sure I'm doing something incorrectly. For the most part, I copied the Spring config file from

Re: Wicket links does not work in Firefox/IE?

2010-07-04 Thread Duy Do
I still can not solve this issue, do you have any solution? Duy On Fri, Jul 2, 2010 at 6:28 PM, Duy Do doquoc...@gmail.com wrote: Hi all, I built a web app with Wicket and it works fine in Chrome, Safari but it does not work in Firefox and IE. In Firefox/IE after clicking on links

Re: Wicket links does not work in Firefox/IE?

2010-07-04 Thread Duy Do
of users using Wicket, and yet they all work fine in all browsers. Martijn On Sun, Jul 4, 2010 at 11:34 AM, Duy Do doquoc...@gmail.com wrote: I still can not solve this issue, do you have any solution? Duy On Fri, Jul 2, 2010 at 6:28 PM, Duy Do doquoc...@gmail.com wrote: Hi all

Wicket links does not work in Firefox/IE?

2010-07-02 Thread Duy Do
Hi all, I built a web app with Wicket and it works fine in Chrome, Safari but it does not work in Firefox and IE. In Firefox/IE after clicking on links of navigation, the corresponding page does not display but if I click refresh ( or F5) it is OK. Could you give me a solution to get rid of this

Re: Announcing: visural-wicket 0.6 released - open source wicket components

2010-06-22 Thread Duy Do
It's great, I will give it a try. Thanks a lot for your contribution. Duy On Tue, Jun 22, 2010 at 5:30 PM, Richard Nichols r...@visural.com wrote: Hi all, I'm pleased to announce the next major version of visural-wicket - 0.6 This version includes a bunch of new components and

Re: How to support multiple themes in Wicket application.

2010-06-19 Thread Duy Do
I would like to support different layout structure, not only CSS. I will follow your help and try to do it. Thank you for your help, I really appreciated it. Duy On Tue, Jun 15, 2010 at 5:40 AM, Russell Simpkins russellsimpk...@hotmail.com wrote: I would like to support multiple themes

How to support multiple themes in Wicket application.

2010-06-14 Thread Duy Do
Hi all, I would like to support multiple themes in Wicket application like Wordpress, Drupal. Could you please give me suggestion? Thanks and regards, Duy