Re: How to remove css class from a component?

2010-06-15 Thread Zoltan Luspai
Hi, Two alternative solutions: - If you want the CSS class be appened only in one response then set the AttributeAppender as "temporary" ...new AttributeAppender(...) { @Override isTemporary() { return true} } }... - Or disable/enable AttributeAppender as needed by overriding isEnable

Bigger sites running on wicket?

2010-05-13 Thread Zoltan Luspai
Dear All, I'm quite fond of wicket so far, but to convince my boss further using it: I would need some samples of bigger sites or portals running on wicket. If you know such - something like 100s of concurrent users, or big number of users- please send me links and information. If possible so

Re: building tons of ajax links

2009-12-10 Thread zoltan luspai
Hi, Do something like this: * create a form with hidden field(s) and a hidden submit-button, and configure this button to be ajax-submitted. * on page onload scan the DOM, and attach an onclick event handler to all the "tons" of links you want to do something on ajax. I'd use some javascri

Re: wicket on Weblogic 10.3.1

2009-11-30 Thread zoltan luspai
pp on WebLogic and Tomcat. Just put this to weblogic.xml: WEBLOGIC_JSESSION_ID Cheers, Zoltan zoltan luspai wrote: Dear All, Thanks for the help so far; one of my problem was indeed a misconfig in the dns (hosts file), funny that tomcat worked that way. The next proble

Re: wicket on Weblogic 10.3.1

2009-11-25 Thread zoltan luspai
capturing the headers with live headers or something similar and seeing what differs between access via localhost and 127.0.0.1. That those differ suggests a DNS/hosts issue to me. Ed. On Tue, Nov 24, 2009 at 9:06 AM, zoltan luspai wrote: I'm going directly to weblogic, which is running

Re: wicket on Weblogic 10.3.1

2009-11-24 Thread zoltan luspai
t couldn't handle the request itself and wasn't forwarding it. Ed. On Tue, Nov 24, 2009 at 4:11 AM, zoltan luspai wrote: Hi All, Anybody has experience with wicket running on Weblogic 10.3.1? Any hints about? I'm having some problem with that wicket pages does not seem to ha

Re: wicket on Weblogic 10.3.1

2009-11-24 Thread zoltan luspai
Hi, Nothing fancy like that; no replication, just a simple localhost installation for development and testing. The stack is a bit of a weird mix, mostly legacy jsp/struts pages, decorated using sitemesh, plus few wicket pages yet also decorated by sitemesh (plus some hacking to include jsp f

wicket on Weblogic 10.3.1

2009-11-24 Thread zoltan luspai
Hi All, Anybody has experience with wicket running on Weblogic 10.3.1? Any hints about? I'm having some problem with that wicket pages does not seem to handle page events properly, for example the first render of the page is fine, but if I click on a button that does not seem to go to the n

Tree-table css/layout problem when the label of the tree-node is long

2009-10-06 Thread zoltan luspai
Dear Wicketeers, I am using the wicket's "standard" tree-table widget, and it works fine; except when a tree-node has longer (wider) text which does not fit to the available space, then this text becomes invisible. Any ideas how to fix this, preferably using some css alterations? The label sh

Tree-table css/layout problem when the label of the tree-node is long

2009-10-06 Thread zoltan luspai
Dear Wicketeers, I am using the wicket's "standard" tree-table widget, and it works fine; except when a tree-node has longer (wider) text which does not fit to the available space, then this text becomes invisible. Any ideas how to fix this, preferably using some css alterations? The label sh

AjaxFormSubmitBehavior throws an NullPointerException when the getForm() is overridden

2009-06-17 Thread zoltan luspai
Hi, I have an AjaxFormSubmitBehavior where I don't pass the form parameter in the constructor, but have overridden the getForm() method to find the related form. (The form is not parent of the button this behavior is attached to, so can not be found by the behavior itself). When I "click"