Inline Javascript comments

2010-05-07 Thread Jérôme Schell
Hello, Working on integration of a wicket portlet in the upcoming Liferay 6, I am currently facing a problem with the way Wicket encapsulates inline javascript. Looking at my page header I see that type of thing (the id have been shortened to avoid line breaks): script type=text/javascript

Wicket training this weekend - voucher for subscribers to this list.

2010-05-07 Thread Cemal Bayramoglu
You can use this voucher [1] for a 33% discount on bookings [2] completed today, using Google Checkout, for this weekend's Wicket course [3] in London for subscribers to this list and friends. Regards - Cemal jWeekend OO Java Technologies, Wicket Consulting, Development, Training

Re: Wicket training this weekend - voucher for subscribers to this list.

2010-05-07 Thread James Perry
Hey Cemal, Do you know of any Wicket developers that are looking for work? I am leaving my current employer, CPG, to work for an investment bank in a front office. CPG are struggling to find any Wicket developers and I thought that you may know a few good Wicket people. Hope all is well on your

Re: Wicket training this weekend - voucher for subscribers to this list.

2010-05-07 Thread Cemal Bayramoglu
James, Congratulations on the new job (did you show them your genetic algorithms? ;-) . Ping me when you're in London. We have good Wicket developers working on our projects (full and part-time) and others looking for interesting Java/Wicket roles. Your company can contact someone here using

Troubles with AjaxEditableLabel

2010-05-07 Thread David Leangen
Hi! Any hints to point me in the right direction? Here is the end bit of the Ajax request (from the Wicket Ajax Debug panel): ![CDATA[{ var el=wicketGet('editor42'); if (el.createTextRange) { var v = el.value; var r = el.createTextRange(); r.moveStart('character',

RE: Wicket, IntelliJ and xml resource bundles

2010-05-07 Thread Alex Rass
Tom, Write to IntelliJ guys to improve support for wicket. Their XML definition files don't allow a lot of the syntax even in HTML. They are behind on a bunch of stuff for wicket. But they are usually good about listening to end users. I've had them fix a bunch of stuff in the past. They have

Call Ajax on Parent Page from Popup page.

2010-05-07 Thread Serban Balamaci
Hello. I have a case where I'm trying to refresh the parent page from a popup page. On the parent page I have: AbstractDefaultAjaxBehavior clientSideCallingBehavior = new AbstractDefaultAjaxBehavior() { protected void respond(AjaxRequestTarget

Re: Wicket + security, what are the best options? Spring Security reached almost all the way...

2010-05-07 Thread PDiefent
I have also problems integrating security into my Wicket project. I wanted to use simple authentication form the application server as I used many times before with JSF applications, but it didn't work. Spring security sounds very good, but since I don't use spring in my Wicket application I

RE: convert wicket pages html to excel

2010-05-07 Thread fachhoch
I also have some servlets whose html is created dynamically based on user input, its basically a form engine which creates forms dynamically ,developed several years before , its a servlet which writes to response reading form data from database, now I want to read the same servlet and

Re: convert wicket pages html to excel

2010-05-07 Thread James Carman
Can you use the XML spreadsheet format? If so, you could perhaps (if your html is clean enough) use XSLT. On Fri, May 7, 2010 at 9:03 AM, fachhoch fachh...@gmail.com wrote: I also have some servlets   whose html is created dynamically  based on user input, its basically a form engine which

Re: wicketstuff-minis status?

2010-05-07 Thread nmetzger
Yes, they changed the mootools a lot. I haven't had time to look into it, nor search for something else as I'm approaching my deadline. So I'm probably just going to go with the old mootools 1.1, as this already works. Thanks for checking, though! Natalie -- View this message in context:

Re: convert wicket pages html to excel

2010-05-07 Thread fachhoch
well I will clean my html using htmlparsers and make it well formed xml , are there any example of using xslt to create excel out of xml ? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/convert-wicket-pages-html-to-excel-tp2131919p2134216.html Sent from the

Components with dynamically defined child components

2010-05-07 Thread Mikkel Lauritsen
Hi all, I'm evaluating webapp frameworks in order to determine what to use when rewriting a large-ish application. Wicket is a serious con- testant, but there's one thing that I haven't been able to figure out how to do properly: how do I create components that have a dynamic list of child

Re: Components with dynamically defined child components

2010-05-07 Thread Cemal Bayramoglu
Mikkel, You will find more information than you have explicitly asked for here [1][2] but there is interesting and instructive material to look at, especially if you are new to Wicket and evaluating it for your project. Regards - Cemal jWeekend OO Java Technologies, Wicket Consulting,

Re: Components with dynamically defined child components

2010-05-07 Thread Mikkel Lauritsen
Hi Cemal, You wrote: You will find more information than you have explicitly asked for here [1][2] but there is interesting and instructive material to look at, especially if you are new to Wicket and evaluating it for your project. Many thanks for your prompt response - judging from a

Re: convert wicket pages html to excel

2010-05-07 Thread James Carman
I would perhaps try reverse-engineering it (that's what I did). You can save a spreadsheet as XML Spreadsheet and look at the XML (it's not pretty). On Fri, May 7, 2010 at 9:56 AM, fachhoch fachh...@gmail.com wrote: well I will clean my html using   htmlparsers and make it well formed  xml  ,

Re: convert wicket pages html to excel

2010-05-07 Thread Jeremy Thomerson
It sounds very brittle to take HTML output from an old HTML-generating servlet, cleaning it with a parser, making it valid XML, and then transforming it into different XML which will represent a spreadsheet. Is it really that difficult to obtain the data from the DB, push it into either a) clean

Re: convert wicket pages html to excel

2010-05-07 Thread James Carman
Well, in my case, it was difficult, because the users wanted to be able to turn *any* page in our application into a spreadsheet representation. Having to maintain two different versions of each page would be a maintenance nightmare, IMHO. On Fri, May 7, 2010 at 11:57 AM, Jeremy Thomerson

Re: Call Ajax on Parent Page from Popup page.

2010-05-07 Thread Jeremy Thomerson
First thing I would try would be: get rid of that label. You don't need it. Just add a behavior directly to the page or panel that adds the necessary JS function: add(new AbstractDefaultAjaxBehavior() { private static final long serialVersionUID = 1L; @Override public void

images as resources

2010-05-07 Thread Christoph Grün
Hi, I would like to have all images in a folder under resources and access them in different panels, which are in the package com.web.panels; What is the best way to do this and how to define the relative path? Thanks, Christoph

Re: how to query in dataTable?

2010-05-07 Thread Jeremy Thomerson
look at the wicket examples [1] and see the data table examples. you will need to implement an IDataProvider http://wicketstuff.org/wicket/repeater/ -- Jeremy Thomerson http://www.wickettraining.com 2010/5/7 cleverpig greatclever...@gmail.com Hello everybody! I am a beginner of wicket.

Re: Call Ajax on Parent Page from Popup page.

2010-05-07 Thread Fernando Wermus
add a WindowClosedCallback. Then you can make the refresh to your parent page. On Fri, May 7, 2010 at 8:45 AM, Serban Balamaci serban.balam...@asf.rowrote: Hello. I have a case where I'm trying to refresh the parent page from a popup page. On the parent page I have:

Re: CheckGroup and ListView

2010-05-07 Thread msalman
QuickStart project added. BTW thanks for the instructions for creating the quick start. If any one else needs the instructions then they can be found at: http://www.jeremythomerson.com/blog/2008/11/wicket-quickstart-tutorial/#more-99 Well, I hope the quick start works for others too. Thanks

Re: wicketstuff-minis status?

2010-05-07 Thread nino martinez wael
No problem. If you at somepoint discover a tooltip that are upto date or more close to the core of a jslib (yui, dojo or jquery, mootools) that are integrative with wicket please write this list. -Nino 2010/5/7 nmetzger nmetz...@odu.edu: Yes, they changed the mootools a lot. I haven't had time

Re: Wicket + security, what are the best options? Spring Security reached almost all the way...

2010-05-07 Thread Brian Topping
I recently updated the spring-security module for Brix to SS 3.0.1. There's probably some nibbles in there for some of the more advanced kinds of security situations (like component-based authorizations against SS 3).

Javascript templating? Removing java code mixed with js

2010-05-07 Thread Anthony DePalma
I recently developed a component that can be added to any form to put a character countdown div next to any textarea. Just for some background, the component constructor is: CharacterCountdownPanel(String id, TextArea textArea, int charLimit). The textarea is necessary because the countdown panel

Re: Javascript templating? Removing java code mixed with js

2010-05-07 Thread James Carman
Did you look at the JavaScriptTemplate class? On Fri, May 7, 2010 at 2:31 PM, Anthony DePalma fatef...@gmail.com wrote: I recently developed a component that can be added to any form to put a character countdown div next to any textarea. Just for some background, the component constructor is:

CSS Templating

2010-05-07 Thread Eric Hamel
All, I've been exploring the use of TextTemplateHeaderContributor.forCss method to build a CSS template for multiple application. Take for example: IModelMapString, Object model = new AbstractReadOnlyModelMapString,Object(){ private static final long serialVersionUID = 1L; @Override public

Re: SEVERE:Pagemap null is still locked by: Thread

2010-05-07 Thread Ayodeji Aladejebi
version 1.4.6 on windows vista running on tomcat 6.0.26 On Wed, May 5, 2010 at 5:43 PM, Johan Compagner jcompag...@gmail.comwrote: hmm looking at the stack of the of that thread that has the lock on the page map then it seems to me that that shouldnt happen, because that thread is doing

RE: Components with dynamically defined child components

2010-05-07 Thread Chris Colman
A lot of our pages are dynamically defined like you require. We make extensive use of the component resolver interface to define our own component resolvers. We have even added a 'parameterization' feature which allows us to add a variety of components that use the same definition but display

Any solution for the context problem with the relative links of BookmarkablePageLink?

2010-05-07 Thread Chris Colman
I was just wondering if there has been any developments on the problem outlined in this post because I'm having the same problem but wanted to avoid the Index link solution: http://apache-wicket.1842946.n4.nabble.com/BookmarkablePageLink-relative -path-Dilemma-td1933044.html

Re: Any solution for the context problem with the relative links of BookmarkablePageLink?

2010-05-07 Thread Jeremy Thomerson
That wasn't a problem - it was someone configuring the proxy incorrectly. What (specifically) are you encountering? -- Jeremy Thomerson http://www.wickettraining.com On Fri, May 7, 2010 at 7:44 PM, Chris Colman chr...@stepaheadsoftware.comwrote: I was just wondering if there has been any

Wicket DataGrid

2010-05-07 Thread Douglas Ferguson
Are there code examples for these: http://wicketstuff.org/grid-examples/tree-grid/simple.4 - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org