DCEVM and Hotswap agent support

2014-11-27 Thread James Selvakumar
this with Wicket. -- Thanks & regards James Selvakumar mCruncher

Re: DCEVM and Hotswap agent support

2014-11-28 Thread James Selvakumar
it. Very rarely I need to restart after making changes to classes. > I have no experience with HotswapAgent. > > Martin Grigorov > Wicket Training and Consulting > https://twitter.com/mtgrigorov > > On Fri, Nov 28, 2014 at 3:04 AM, James Selvakumar > wrote: > > > Dea

Reload Wicket classes/markup without reloading Servlet Container

2016-09-01 Thread James Selvakumar
Dear Wicket community, May I know what techniques/tools are used by the community to reload Wicket classes and markup without reloading Servlet Container to speed up development? -- Thanks & regards James Selvakumar mCruncher

Re: Reload Wicket classes/markup without reloading Servlet Container

2016-09-07 Thread James Selvakumar
ail: users-h...@wicket.apache.org > > -- Thanks & regards James Selvakumar mCruncher

Re: Reload Wicket classes/markup without reloading Servlet Container

2016-09-07 Thread James Selvakumar
M is an entension to the JRE so it doesn't care how exactly the runtime > classpath is constructed. > > Martin Grigorov > Wicket Training and Consulting > https://twitter.com/mtgrigorov > > On Wed, Sep 7, 2016 at 11:13 AM, James Selvakumar > wrote: > > > Dear

Re: Reload Wicket classes/markup without reloading Servlet Container

2016-09-07 Thread James Selvakumar
Thanks for the correction. I'm sorry I am not familiar with DCEVM. Anyhow, thank you very much for all your input. On Wed, Sep 7, 2016 at 5:29 PM, Martin Grigorov wrote: > On Wed, Sep 7, 2016 at 11:24 AM, James Selvakumar > wrote: > > > Thanks Martin. Will try that out

File upload using REST API

2016-10-23 Thread James Selvakumar
Dear friends, I want to upload a file using REST API. I'm already using WicketStuff REST library. I searched and couldn't see any example based on Wicket. Can anyone guide me to understand how to do this in Wicket? -- Thanks in advance, James Selvakumar

Re: File upload using REST API

2016-10-30 Thread James Selvakumar
; files-to-server-using-jsp-servlet > > On 24/10/2016 08:13, James Selvakumar wrote: > >> Dear friends, >> >> I want to upload a file using REST API. >> I'm already using WicketStuff REST library. >> I searched and couldn't

Encrypt selected form data before submitting the request to Server

2017-01-15 Thread James Selvakumar
Hi all, I have this requirement where some of the data entered by the user are to be encrypted in the client side before the request is submitted to the Wicket server even though the communication is over HTTPS. I am thinking of having some JavaScript code in the client which shall intercept the

Re: Encrypt selected form data before submitting the request to Server

2017-01-15 Thread James Selvakumar
listener on the > Ajax submit behavior of the form. > There you can do a **synchronous** Ajax call to get your key and then > modify (i.e. encrypt) the data to be sent. > > Martin Grigorov > Wicket Training and Consulting > https://twitter.com/mtgrigorov > > On Mon, Jan 1

Re: Encrypt selected form data before submitting the request to Server

2017-01-15 Thread James Selvakumar
nerate a random secret the moment the form is rendered. > > Then, in javascript, you can use your favorite symmetric block cipher to > > replace the values/encode them in json (for example in a hidden field. > > Server side you do the reverse > > > > -Rob >

Re: Encrypt selected form data before submitting the request to Server

2017-01-16 Thread James Selvakumar
omething with JSON, JQuery, > return "encryptFormToHiddenField( " + secretForm.getMarkupId() + " ) " ; > } > } ); > } > }; ); > > > In the onSubmit() of the form you can access the contents of the > encodedResult, use the ''SuperDuperSecret" to decode it. > > Now that I'm writing it, I think you also want to prevent the other values > from being sent.. Maybe you could empy the values using JavaScript? > > > > -Rob > -- Thanks & regards James Selvakumar

Error while calling Wicket from a JavaScript function

2017-01-18 Thread James Selvakumar
Dear Wicket team, I need to make a call to a Wicket page from my JavaScript function. I followed the guide Calling Wicket from Javascript and managed to define an ajax behavior to respond to the JavaScript call. M

Re: Error while calling Wicket from a JavaScript function

2017-01-18 Thread James Selvakumar
t; Wicket Training and Consulting > https://twitter.com/mtgrigorov > > On Wed, Jan 18, 2017 at 9:51 AM, James Selvakumar > wrote: > > > Dear Wicket team, > > > > I need to make a call to a Wicket page from my JavaScript function. > > I followed the guide Calling

Re: Error while calling Wicket from a JavaScript function

2017-01-18 Thread James Selvakumar
Hi Martin, I tried your suggestion but I'm still getting the same TypeError. On Wed, Jan 18, 2017 at 4:55 PM, James Selvakumar wrote: > Thanks Martin for the super fast reply. I'll try that out. > > On Wed, Jan 18, 2017 at 4:54 PM, Martin Grigorov > wrote: > >>

Re: Error while calling Wicket from a JavaScript function

2017-01-18 Thread James Selvakumar
r problem. > > Martin Grigorov > Wicket Training and Consulting > https://twitter.com/mtgrigorov > > On Wed, Jan 18, 2017 at 10:04 AM, James Selvakumar > wrote: > > > Hi Martin, > > > > I tried your suggestion but I'm still getting the same TypeError.

Re: Error while calling Wicket from a JavaScript function

2017-01-18 Thread James Selvakumar
backUrl }); > //do some processing with foo > Is this valid? Or is there a better way? On Wed, Jan 18, 2017 at 5:26 PM, James Selvakumar wrote: > Thanks a lot Martin. You're right. I had something else in my code and > after I fixed it, I managed to make a ajax call from Java

Re: Error while calling Wicket from a JavaScript function

2017-01-18 Thread James Selvakumar
Thanks for the clear explanation Martin. On Wed, Jan 18, 2017, 8:30 PM Martin Grigorov wrote: > On Wed, Jan 18, 2017 at 10:35 AM, James Selvakumar > wrote: > > > Hi Martin, > > > > Is it possible to return a value from the ajax behavior while responding > to >

Can @Inject annotation be used instead of @SpringBean to inject Spring beans?

2017-01-30 Thread James Selvakumar
Hi all, I've always used @SpringBean annotation to inject Spring beans in my Wicket components. We found that we could also use the standard @Inject annotation in Wicket components. Is it advisable to use @Inject instead of @SpringBean? Or should we continue to use @SpringBean? -- Thanks & regar

Dynamic datatable columns (sequel)

2017-03-15 Thread James Selvakumar
Hi all, I want to render a datatable with dynamically different columns based on user input (via a DropDownChoice) over ajax. I came across this old post which mentions that this feature might be available in Wic

Re: Dynamic datatable columns (sequel)

2017-03-16 Thread James Selvakumar
Have fun > Sven > > > On 16.03.2017 04:34, James Selvakumar wrote: > >> Hi all, >> >> I want to render a datatable with dynamically different columns based on >> user input (via a DropDownChoice) over ajax. >> I came across this old post >> <http://ap

Re: Dynamic datatable columns (sequel)

2017-03-17 Thread James Selvakumar
Hi Sven, I'm a bit clueless about this. Could you share a little code example to help me? Thanks. On Thu, Mar 16, 2017 at 5:03 PM, James Selvakumar wrote: > Hi Sven, > > Thanks for the info. Will try that out. > > On Thu, Mar 16, 2017 at 4:20 PM, Sven Meier wrote: > &g

Re: Dynamic datatable columns (sequel)

2017-03-20 Thread James Selvakumar
s.add(...); > } > } > > In #onConfigure() you adjust the columns as needed for each rendering - > that's all. > > Sven > > > > On 17.03.2017 08:20, James Selvakumar wrote: > >> Hi Sven, >> >> I'm a bit clueless about this. &

Unable to retrieve row model in DataTable while running the application in Jetty

2017-04-21 Thread James Selvakumar
Hi all, I have a DataTable with some ajax links in the first column. Other columns are simple property columns. The ajax links are used to edit/delete associated entities. The ajax links are encapsulated inside a panel. The DataTable itself is rendered fine. The problem I face is that the rowMod

Re: Unable to retrieve row model in DataTable while running the application in Jetty

2017-04-24 Thread James Selvakumar
); > Do you call detach ? > > François > > > > > Le 21 avr. 2017 à 09:38, James Selvakumar a écrit > : > > > > Hi all, > > > > I have a DataTable with some ajax links in the first column. Other > columns > > are simple property columns.

Re: Unable to retrieve row model in DataTable while running the application in Jetty

2017-04-25 Thread James Selvakumar
ançois > > > > > Le 25 avr. 2017 à 03:35, James Selvakumar a écrit > : > > > > Hi Francois, > > > > Thank you very much for your reply. > > I define my datatable like this: > > > > StandardDataTable dataTable = new StandardDataTable("

Analytics for Wicket applications

2017-06-15 Thread James Selvakumar
Dear community, Though this is not a question related to the Wicket framework which we have been using happily for nearly 6 years, I hope the community would help me with it's insights regarding providing analytics in Wicket applications. We are using the excellent wicked-charts library (HighChar

Re: The day Wicket became Apache Wicket 10 years ago!

2017-06-19 Thread James Selvakumar
It's heartening to see Wicket still going strong. And I take this opportunity to thank all of you for this amazing framework and many thanks for the support offered. The support offered by the Wicket community is superior compared to even commercial products. Keep going! On Tue, Jun 20, 2017 at 1:

Embedding HTML report generated by JasperReports in a Panel

2017-06-19 Thread James Selvakumar
Hi all, I'm trying to embed the HTML report from the filesystem generated by JasperReports in a Panel. I tried using a WebComponent and write the content of the HTML file to the Response. The markup gets added as expected but unfortunately JasperReports produces separate image files and I'm not s

Re: Embedding HTML report generated by JasperReports in a Panel

2017-06-20 Thread James Selvakumar
ports" > 2- Use an iframe to display "/reports/foo.html". > > On Tue, Jun 20, 2017 at 10:15 AM, James Selvakumar > wrote: > > > Thanks Martin and Ernesto for taking look at this. > > I'm using JasperReports library to generate HTML reports dynamically and &g

Re: Embedding HTML report generated by JasperReports in a Panel

2017-06-20 Thread James Selvakumar
resource pointing the folder and serving all files on that >> folder. E.g mounted on "/reports" >> 2- Use an iframe to display "/reports/foo.html". >> >> On Tue, Jun 20, 2017 at 10:15 AM, James Selvakumar >> wrote: >> >> > Thanks Marti

Re: Embedding HTML report generated by JasperReports in a Panel

2017-06-20 Thread James Selvakumar
Hi Martin, Thanks. I'll give that a try. On Tue, Jun 20, 2017 at 5:23 PM Martin Grigorov wrote: > On Tue, Jun 20, 2017 at 11:18 AM, James Selvakumar > wrote: > > > Hi, > > > > I'm trying something weird like this and it's not working. > > >

Re: Embedding HTML report generated by JasperReports in a Panel

2017-06-20 Thread James Selvakumar
Hi Martin, But the reports are generated dynamically. Is it possible to mount a resource from within a panel? On Tue, Jun 20, 2017 at 5:24 PM James Selvakumar wrote: > Hi Martin, > > Thanks. I'll give that a try. > > On Tue, Jun 20, 2017 at 5:23 PM Martin Grigorov > wro

Re: Embedding HTML report generated by JasperReports in a Panel

2017-06-20 Thread James Selvakumar
Hi Martin, Should I mount just the base dir where all my reports shall be generated and refer it elsewhere? On Tue, Jun 20, 2017 at 5:28 PM James Selvakumar wrote: > Hi Martin, > > But the reports are generated dynamically. Is it possible to mount a > resource from within a panel

Re: Embedding HTML report generated by JasperReports in a Panel

2017-06-20 Thread James Selvakumar
2C+Word%29+in+an+IFRAME > > On Tue, Jun 20, 2017 at 11:32 AM, Martin Grigorov > wrote: > > > On Tue, Jun 20, 2017 at 11:31 AM, James Selvakumar > > wrote: > > > > > Hi Martin, > > > > > > Should I mount just the base dir where all my re

Re: Embedding HTML report generated by JasperReports in a Panel

2017-06-21 Thread James Selvakumar
Jasper would support storing images and so on in a database... > IMHO that would be a more robust approach. But you know better your use > case. > > On Wed, Jun 21, 2017 at 3:34 AM, James Selvakumar > wrote: > > > Hi Martin/Ernesto, > > > > Thanks for all the h

Re: DCEVM and Hotswap agent support

2017-08-15 Thread James Selvakumar
Dear all, Just to complete this loop, I've managed to configure my multi module Wicket application to reload classes and resources (e.g html, property files) without restarting the whole application using DCEVM + HotSwapAgent. After following the standard procedures in configuring these two tools,

Wicket tests are extremely slow

2018-02-11 Thread James Selvakumar
Hi, We have a Wicket 7.x application which uses a Spring/Hibernate backend. We have few hundred simple Wicket tests that basically tests whether the page has been loaded properly. Since almost all our Wicket pages use Spring beans, we have to initialize the Spring application context for our Wicke

Re: Wicket tests are extremely slow

2018-02-12 Thread James Selvakumar
ing that up or eliminating it all together (just > once for the whole suite) > > Martijn > > > On Mon, Feb 12, 2018 at 5:05 AM, James Selvakumar > wrote: > > Hi, > > > > We have a Wicket 7.x application which uses a Spring/Hibernate backend. > We > >

Displaying a Jenkins like "Getting ready to work" message in a web page when application is starting up

2018-10-04 Thread James Selvakumar
Hi all, First of all I would like to thank the community for all the help offered in the past. Thank you very much. My application (Wicket + Spring + Hibernate) takes around 60 to 90 seconds to startup and all the user has to see is an empty browser tab when the application is starting up. I've o

Re: Displaying a Jenkins like "Getting ready to work" message in a web page when application is starting up

2018-10-05 Thread James Selvakumar
spring-startup-progress > It should give you an idea how to do it. > > On Fri, Oct 5, 2018 at 5:09 AM James Selvakumar > wrote: > > > Hi all, > > > > First of all I would like to thank the community for all the help offered > > in the past. Thank you very much. &

Is Wicket In Action still relevant?

2023-05-11 Thread James Selvakumar
Hi all, Just wondering whether Wicket in Action is still relevant with all the recent changes to Wicket? Can it be used to help a new developer understand Wicket? -- Thanks & regards James

Re: Is Wicket In Action still relevant?

2023-05-11 Thread James Selvakumar
browse through it > occasionally. > > > > There still are some gotchas when used with Wicket 9, such as CSP and > the way resources are loaded is slightly different IIRC. > > > > But if you want to get someone to grasp the basics of Wicket, it is a > really good re

Re: Wicket page test

2012-10-23 Thread James Selvakumar
t; > mCruncher* > >> >> > >> >> > >> >> > >> >> -- > >> >> Martin Grigorov > >> >> jWeekend > >> >> Training, Consulting, Development > >> >> http://jWeekend.com > >> >>

Re: wicket-6 User friendly form validation with Wicket (stuq)

2012-11-25 Thread James Selvakumar
st> >> It also shows how a behavior can be used for this. >> > > Thanks for the link, looks very promising. > > > Best Regards > Rafał Krupiński > > > --**--**- > To unsubscribe, e-mail: > users-unsubscribe@wicket.**apache.org > For additional commands, e-mail: users-h...@wicket.apache.org > > -- Thanks & regards James Selvakumar

Re: wicket-6 User friendly form validation with Wicket (stuq)

2012-11-25 Thread James Selvakumar
Sorry, Got most of the answers from the mailing list discussion here: http://apache-wicket.1842946.n4.nabble.com/highlight-invalid-fields-with-custom-Validation-Framework-tp4652949p4652978.html On Mon, Nov 26, 2012 at 11:31 AM, James Selvakumar wrote: > Hi all, > > We have been

Re: highlight invalid fields with custom Validation Framework?

2012-11-25 Thread James Selvakumar
------- > > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org > > For additional commands, e-mail: users-h...@wicket.apache.org > > > > > > -- > Martin Grigorov > jWeekend > Training, Consulting, Development > http://jWeekend.com > > - > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org > For additional commands, e-mail: users-h...@wicket.apache.org > > -- Thanks & regards James Selvakumar

Re: highlight invalid fields with custom Validation Framework?

2012-11-25 Thread James Selvakumar
Thanks. On Mon, Nov 26, 2012 at 2:11 PM, Martin Grigorov wrote: > On Mon, Nov 26, 2012 at 4:50 AM, James Selvakumar >wrote: > > > Martin, > > > > Thank you so much. I was exactly in the position where delta458 was and > > almost got through with it. > >

Re: How to build a hudson/jenkins like live log viewer?

2013-06-19 Thread James Selvakumar
Guys, This works like a charm. I'm using it in in our project. Thanks once again for all your suggestions. Just a minor correction in case you are using a MultiLineLabel for "nextLog". While appending Javascript in the "onPostProcessTarget" method, instead of: use: This is needed because ".

Feedback message is not available for behaviors added to nested form components

2013-07-02 Thread James Selvakumar
age().toString(); } else { error = "Your input is invalid."; } fc.getResponse().write( "" + error + ""); }else{ logger.debug("Form component {} is valid", fc); } } }* Any clues? I've been trying to crack this for a whole day. -- Thanks & regards James Selvakumar

Re: Feedback message is not available for behaviors added to nested form components

2013-07-02 Thread James Selvakumar
No. On Tue, Jul 2, 2013 at 7:04 PM, Sven Meier wrote: > Are you using listView.setReuseItems(true) ? > > Sven > > > On 07/02/2013 11:13 AM, James Selvakumar wrote: > >> Hi all, >> >> I've the following component heirarchy: >> >> form:t

Re: Feedback message is not available for behaviors added to nested form components

2013-07-03 Thread James Selvakumar
d hence not the same children that had the feedback messages. > > Cheers, > Jesse > > > On 03/07/2013 02:35, James Selvakumar wrote: > >> No. >> >> >> On Tue, Jul 2, 2013 at 7:04 PM, Sven Meier wrote: >> >> Are you using listView.se

Re: Feedback message is not available for behaviors added to nested form components

2013-07-04 Thread James Selvakumar
el. Why are you adding components? > > Sven > > > On 07/04/2013 02:41 AM, James Selvakumar wrote: > >> Hi Jesse, >> >> I was not aware of this before. Thanks for the insight >> But I do add/remove components to the ListView dynamically. >> Will ListView#se

Re: Feedback message is not available for behaviors added to nested form components

2013-07-04 Thread James Selvakumar
dback messages. > > Cheers, > Jesse > > > On 03/07/2013 02:35, James Selvakumar wrote: > >> No. >> >> >> On Tue, Jul 2, 2013 at 7:04 PM, Sven Meier wrote: >> >> Are you using listView.setReuseItems(true) ? >>> >>>

Re: DropDownChoice with RequiredTextField

2013-08-27 Thread James Selvakumar
he Dropdownchoice i had clear the > RequiredTextField and click save the is required error message arise for > the RequiredTextField. Then once again i had change the dropdownchoice now > the RequiredField is not updating. > > > > Thanks > > Vignesh Palanisamy > -- Thanks & regards James Selvakumar mCruncher