Re: [Wicket-user] Link, ExternalLink, onclick and ampersand

2006-06-27 Thread Juergen Donnerstag
+1 Juergen On 6/28/06, Eelco Hillenius <[EMAIL PROTECTED]> wrote: > I think you're right and external link should do this too. Anyone else > an opinion about this? > > Eelco > > > On 6/27/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > Hello, > > > > Link uses a href attribute and an onclick

Re: [Wicket-user] Link, ExternalLink, onclick and ampersand

2006-06-27 Thread Eelco Hillenius
I think you're right and external link should do this too. Anyone else an opinion about this? Eelco On 6/27/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > Hello, > > Link uses a href attribute and an onclick handler: > > > // generate the href attribute > > tag.put("href", Strings.replaceAll

Re: [Wicket-user] wicket developer job opening

2006-06-27 Thread Igor Vaynberg
my wife always says she wouldnt marry anyone smarter then her...-IgorOn 6/27/06, Eelco Hillenius < [EMAIL PROTECTED]> wrote:That's just mean man; you got your diploma and your girlfriend broke up? ;) Eelco> finished off my school (Hanze University Groningen)> yesterday and I am am a bachelor now. W

Re: [Wicket-user] wicket developer job opening

2006-06-27 Thread Eelco Hillenius
That's just mean man; you got your diploma and your girlfriend broke up? ;) Eelco > finished off my school (Hanze University Groningen) > yesterday and I am am a bachelor now. Will send my cv later this week. Using Tomcat but need to do more? Need to support web services, security? Get stuff don

Re: [Wicket-user] wicket developer job opening

2006-06-27 Thread Potje rode kool
But what about the Frisian language ? is that ok too? ;)I will look into the job and your company to look if it is interestion, finished off my school (Hanze University Groningen) yesterday and I am am a bachelor now. Will send my cv later this week. Evert 2006/6/27, Martijn Dashorst <[EMAIL PROTEC

Re: [Wicket-user] wicket developer job opening

2006-06-27 Thread Martijn Dashorst
http://www.topicus.nl/Wicket.139.0.html On 6/27/06, Eelco Hillenius <[EMAIL PROTECTED]> wrote: > But where is Wicket mentioned? > > On 6/27/06, Martijn Dashorst <[EMAIL PROTECTED]> wrote: > > I wasn't going to pimp our company, but now you've asked for it: > > http://www.topicus.nl/Vacatures.123.0

Re: [Wicket-user] wicket developer job opening

2006-06-27 Thread Eelco Hillenius
But where is Wicket mentioned? On 6/27/06, Martijn Dashorst <[EMAIL PROTECTED]> wrote: > I wasn't going to pimp our company, but now you've asked for it: > http://www.topicus.nl/Vacatures.123.0.html > > Some knowledge of the dutch language is required, but I guess that the > posting is already sel

Re: [Wicket-user] wicket developer job opening

2006-06-27 Thread Martijn Dashorst
I wasn't going to pimp our company, but now you've asked for it: http://www.topicus.nl/Vacatures.123.0.html Some knowledge of the dutch language is required, but I guess that the posting is already selective about that :) Martijn On 6/27/06, Eelco Hillenius <[EMAIL PROTECTED]> wrote: > So where

Re: [Wicket-user] wicket developer job opening

2006-06-27 Thread Eelco Hillenius
So where is that job description of yours? :) Eelco On 6/27/06, Martijn Dashorst <[EMAIL PROTECTED]> wrote: > If you stay out of Europe, the market is almost divided. Only South > America, the pacific and Africa. > > And if you eva stick your dirty hands across the pond, we'll have you > for bre

Re: [Wicket-user] wicket developer job opening

2006-06-27 Thread Martijn Dashorst
If you stay out of Europe, the market is almost divided. Only South America, the pacific and Africa. And if you eva stick your dirty hands across the pond, we'll have you for breakfast, got it? ;-) Martijn On 6/27/06, Nathan Hamblen <[EMAIL PROTECTED]> wrote: > How about this, you take the West

Re: [Wicket-user] wicket developer job opening

2006-06-27 Thread Nathan Hamblen
How about this, you take the West coast Wicket coders and we'll take the East coast. http://newyork.craigslist.org/mnh/eng/173875466.html Stay outta New York, and we won't have any trouble. (kidding!) Nathan Jeffrey H. Lin wrote: > > I am looking for a full-time wicket programmer to join our t

[Wicket-user] Link, ExternalLink, onclick and ampersand

2006-06-27 Thread sven
Hello, Link uses a href attribute and an onclick handler: > // generate the href attribute > tag.put("href", Strings.replaceAll(url, "&", "&")); > // Add any popup script > if (popupSettings != null) > { > // NOTE: don't encode to HTML as that is not valid > // JavaScript > tag.put("onclick

[Wicket-user] Problem with Wicket Ajax Debug and onLoad

2006-06-27 Thread Marco Geier
Hi all, i just encountered an odd behaviour in InternetExplorer with Ajax Debug enabled. In this case my "" handler doesn't get called. This does not happen in Mozilla, and onUnload events are called in both browsers. Bug or Feature? Rgds, M. Using Tomcat but need to do more? Need to support

Re: [Wicket-user] Wicket fundamentals

2006-06-27 Thread Eelco Hillenius
Hi Frank, What you stumble upon is largely a matter of individual taste of the core developers. There is no overall design strategy for things like this, and you'll find that depending on who wrote classes, the way extension points are setup can be very different. For instance the ListView was set

Re: [Wicket-user] Allow nested components in VelocityPanel

2006-06-27 Thread Eelco Hillenius
If that really fixes a real life problem, I'm fine with it. Eelco On 6/27/06, Johan Compagner <[EMAIL PROTECTED]> wrote: > I still don't know how to fix that > > It is pretty much the same thing as ServlerResponse.getInputStream or > getWriter(): > And that one also returns always the same thing

Re: [Wicket-user] Allow nested components in VelocityPanel

2006-06-27 Thread Johan Compagner
I still don't know how to fix thatIt is pretty much the same thing as ServlerResponse.getInputStream or getWriter():And that one also returns always the same thing. And the servletResponse is responsable for closing it because that class did generate the OutputStream (that class did new OutputStrea

Re: [Wicket-user] @EJB Injection

2006-06-27 Thread Vincent Jenks
Excellent, thanks Igor! On 6/27/06, Igor Vaynberg <[EMAIL PROTECTED]> wrote: > you need to recreate what we do for spring with @SpringBean annotation but > instead use the @EJB annotation > > if you are using 1.2 see wicket-spring and how it creates proxies. see > AnnotSpringInjector and AnnotSpri

Re: [Wicket-user] @EJB Injection

2006-06-27 Thread Igor Vaynberg
you need to recreate what we do for spring with @SpringBean annotation but instead use the @EJB annotationif you are using 1.2 see wicket-spring and how it creates proxies. see AnnotSpringInjector and AnnotSpringWebApplication what it will boil down to is for you to create an EjbProxyFieldValueFact

[Wicket-user] @EJB Injection

2006-06-27 Thread Vincent Jenks
In Java EE 5, instead of using JNDI lookups to get a stub to an EJB we'll have the ability to just inject it w/ a simple @EJB annotation. I see that JBoss will support this for Servlets & JSP in the near-future...what will be needed to support this in Wicket? Anything at all? There are a couple o

Re: [Wicket-user] Select doesn't remember selection and other issues

2006-06-27 Thread Igor Vaynberg
and its in the 1.2 branch, will make it into 1.2.1-IgorOn 6/27/06, Johan Compagner <[EMAIL PROTECTED] > wrote:i think we can do this change.Because i think it will pretty much always goes wrong other wise.  (that it tries to get an _expression_ of that component but that component is "not part" of

Re: [Wicket-user] Select doesn't remember selection and other issues

2006-06-27 Thread Johan Compagner
i think we can do this change.Because i think it will pretty much always goes wrong other wise.  (that it tries to get an _expression_ of that component but that component is "not part" of that model it is not its model) johanso what do other core committers think? Index: D:/ws/wicket_1_2/src/java/

Re: [Wicket-user] Wicket Ajax Debug

2006-06-27 Thread Martijn Dashorst
Deploy your application in deployment mode instead of development (see web.xml). Or in your Application#init(): final IAjaxSettings ajaxSettings = getAjaxSettings(); ajaxSettings.setAjaxDebugModeEnabled(false); Martijn On 6/27/06, [EMAIL PROTECTED] <[EMAIL PROTEC

[Wicket-user] Wicket Ajax Debug

2006-06-27 Thread gangadhar
Hi All I want to remove Wicket Ajax Debug Link from Ajax Examples How it is go it Regards Gangadhar A. Vibhute Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Applicati

Re: [Wicket-user] export excel with "full" DataTable

2006-06-27 Thread Ingram Chen
DataTable (from repeater) doesn't has getItemsPerPage()... etc  method,  I try to get internal component to change paging setting:new ComponentRequestTarget(dataTable) {   @Override   public void respond( wicket.RequestCycle requestCycle) {    DataGridView dataGridView = (DataGridView) dataTabl

[Wicket-user] 贵公司经理

2006-06-27 Thread 王生
贵公司经理,财务: 你好!顺昌贸易税务代理(广州)有限公司现有广告,运输,建筑,服务等发票可以代开,税点数优惠,我司开具的发票真伪均可上网或到税务局查询核对验证.如有需要请与我公司联系。欢迎广大客户来电来邮咨询! 联 系 人: 王生 联系电话:13535052509 邮箱地址: [EMAIL PROTECTED]

Re: [Wicket-user] Wicket 1.2 and Websphere 5.1.0/JBoss 3.2.7.

2006-06-27 Thread Martijn Dashorst
Tip from Flip: Use the yourkit profiler, start your server and before you hit the page in question, take a memory snapshot. Hit the page a couple of times, and take another snapshot. Then compare the two snapshots. Try to find the page in question and see what is kept in memory. If you use final

Re: [Wicket-user] Wicket 1.2 and Websphere 5.1.0/JBoss 3.2.7.

2006-06-27 Thread Eelco Hillenius
If you can't profile directly, you might want to put in a inspector page such as the wicket examples have that (see the 'i' icon in the top left corner of wicket-examples apps), and see if there are any extreme things going on. Eelco On 6/27/06, A. Zwaan <[EMAIL PROTECTED]> wrote: > > > > > Hi M

Re: [Wicket-user] Wicket 1.2 and Websphere 5.1.0/JBoss 3.2.7.

2006-06-27 Thread A. Zwaan
Hi Martijn,   We have ‘deployment’ mode turned on, and to my knowledge no larger pagemap cache or other configuration settings.     Kinds regards,   Arjan Zwaan.     FINAN Financial Analysis Postbus 4155 3006 AD Rotterdam Tel: +31 10 8508500 www.finan.nl DISCLAIMER: This st