Re: sneak peek - brix - wicket/jcr cms

2008-07-10 Thread freak182
I checked out brix and run, it's cool :) ...I know a popular CMS built in PHP (Joomla)..i know brix is still in development but if could brix do like joomla it would be great...it is possible? or is just a wish list :) hehehe anyway, goodluck to the team...its cool to have cms like this in java

TabbedPanel and css problem

2008-07-10 Thread Pierre Gilquin
Hi all, I have try to use a TabbedPanel in my appli. The css look in not taking into account. If I look into the html generated I have : span class=tabpanel div class=tab-row ul li class=tab0 selected ... If I look in the example on

Re: Direclty using parent's compoundpropertymodel not possible ?

2008-07-10 Thread ZedroS
Thanks a lot for your answer. One question though : Johan Compagner wrote: CPM is used that child components can have sub objects/properties of that main object by using the child components id as the property how can I easily get the CPM in sub component ? For example, if I have a family

RE: TabbedPanel and css problem

2008-07-10 Thread Stefan Lindner
How does your RAW html file look like? The one you write by yourself? Something like span wicket:id=myTabPanel/span ? -Ursprüngliche Nachricht- Von: Pierre Gilquin [mailto:[EMAIL PROTECTED] Gesendet: Donnerstag, 10. Juli 2008 08:27 An: users@wicket.apache.org Betreff:

Re: Component self updating when Ajax call changed a commun model ?

2008-07-10 Thread ZedroS
Hi Thanks again ! Were you thinking of this discussion : http://www.nabble.com/AJAX-validation-and-multiple-requests-td15546309.html ? If so it looks like there is no real feature for this need in the framework and that it should be done by hand each time, do we agree ? ++ -- View this

Re: disabling error validation

2008-07-10 Thread ZedroS
Hi If you don't want our form to be validated, why do you use a SubmitLink ? A simple Link wouldn't trigger the validation. Isn't that what you're looking for ? ++ zedros -- View this message in context: http://www.nabble.com/disabling-error-validation-tp18375841p18377437.html Sent from the

RE: TabbedPanel and css problem

2008-07-10 Thread Umesh Paliwal
Hi Pierre, You will have to place the Tab images in your web-app directory. The CSS also needs to placed in the web-app directory. If the CSS is not there in the web-app directory and is in the same place as the HTML file, You need to include it in your java code. add(new

Re: disabling error validation

2008-07-10 Thread tbt
Hi But I need the component models to be updated. Thats why i'm using a SubmitLink instead of using a Link. I was hoping there was a simple method to disable form validation with the SubmitLink such as 'link2.setFormValidation(false)' or something like that. Is there a way to disable

Re: disabling error validation

2008-07-10 Thread Serkan Camurcuoglu
this link may help you a bit.. http://cwiki.apache.org/WICKET/conditional-validation.html tbt wrote: Hi But I need the component models to be updated. Thats why i'm using a SubmitLink instead of using a Link. I was hoping there was a simple method to disable form validation with the

Avoid page serialization

2008-07-10 Thread Daniele Dellafiore
I am wondering if page serialization in wicket is always necessary. I have read this: Wicket keeps its tree of components in the session. In a clustered environment, session data needs to be replicated across the cluster. This is done by serializing objects in a cluster-node's session and

Re: Avoid page serialization

2008-07-10 Thread Johan Compagner
yes with the default pagestore of 1.3+ this is needed We serialize pages to disk. On Thu, Jul 10, 2008 at 10:37 AM, Daniele Dellafiore [EMAIL PROTECTED] wrote: I am wondering if page serialization in wicket is always necessary. I have read this: Wicket keeps its tree of components in the

How can i use a Image as Link?

2008-07-10 Thread HITECH79
Hallo, how can i use a Image as Link and the mouse pointer is changing to a hand-symbol...? Cheers -- View this message in context: http://www.nabble.com/How-can-i-use-a-Image-as-Link--tp18378790p18378790.html Sent from the Wicket - User mailing list archive at Nabble.com.

RE: How can i use a Image as Link?

2008-07-10 Thread Stefan Lindner
a class=myCssClass href=# wicket:id=myLinkimg src=images/neu.gif alt=Klicken Sie hier um einen neuen Therapiekatalog anzulegen.//a Use css a.myCssClass:hover to modify mouse cursor on over. - To unsubscribe, e-mail: [EMAIL

Re: How can i use a Image as Link?

2008-07-10 Thread Piller Sébastien
Try this HTML a wicket:id=linkimg wicket:id=img //a JAVA add(new PageLink(link, MyPage.class).add(new Image(img, new ResourceReference(MyPage.class, img.png For the hand cursor, use css cursor: whateveryouwant HITECH79 a écrit : Hallo, how can i use a Image as Link and the mouse

AjaxFallbackDefaultDataTable Header Changing by CSS?

2008-07-10 Thread HITECH79
Hallo, can i change the Header-Style from AjaxFallbackDefaultDataTable by CSS? How can i put or use sort-arrows for sorting the table...? Cheers -- View this message in context: http://www.nabble.com/AjaxFallbackDefaultDataTable-Header-Changing-by-CSS--tp18378908p18378908.html Sent from

DateTextField bug : no validation and giving null to Hibernate

2008-07-10 Thread Joseph P.
Hi We're currently facing an issue with a DateTextField define like this : DateTextField yearOfPublication = new DateTextField(published, getModel(), new PatternDateConverter(,true)); add(yearOfPublication); This field is added in a panel containing as well a required field (named title).

(Wicket + Netbeans) without (Maven + NB.WicketPlugin)

2008-07-10 Thread wickid
hello, community! i am using the latest wicket plugin for netbeans (bundeled with wicket-1.3.3). but i want to use wicket-1.4-m2 (generics are my friends). this doesn't work: tomcat and glassfish are telling me, they can't find velocity and slf4j (ClassNotFoundException). but i have both

Re: DateTextField bug : no validation and giving null to Hibernate

2008-07-10 Thread Joseph P.
Hi We have found it : it's the getRequestCycleSettings().setGatherExtendedBrowserInfo(true); setting in the application initSettings() which was causing all this fuss. Since we commented it out it works fine... shall I open a bug ? bye joseph -- View this message in context:

Re: sneak peek - brix - wicket/jcr cms

2008-07-10 Thread wicket user
Hi Patrick, I am very happy to do that. To start with a Getting Started document will be really handy. Regards Dipu On Wed, Jul 9, 2008 at 10:05 PM, Patrick Angeles [EMAIL PROTECTED] wrote: Hi Dipu, Thanks for looking into Brix. If you can identify any specific areas where we could

Re: (Wicket + Netbeans) without (Maven + NB.WicketPlugin)

2008-07-10 Thread Gwyn Evans
You don't *need* Maven, but if you want to do your own thing, chances are you're going to have to do more of the investigations into issues yourself (e.g. provide details ) may find it easier to actually install use Maven. For a start, it doesn't need to download hundreds of libraries to

Testing behavior of a ModalWindows: close, click...

2008-07-10 Thread Daniele Dellafiore
Hi all. I am trying to test, with WicketTester, a behavior like this, a classic delete confirmation dialog: click on link opens a ModalWindow (OK) check that the Modal is open indeed (OK, with tester.assertComponentOnAjaxResponse(deleteModal);) click on a confirm button on the page in the modal,

Re: Avoid page serialization

2008-07-10 Thread Matej Knopp
It is necessary as wicket uses serialization to make snapshot of page state to be able to revert it back on back button. -Matej On Thu, Jul 10, 2008 at 10:37 AM, Daniele Dellafiore [EMAIL PROTECTED] wrote: I am wondering if page serialization in wicket is always necessary. I have read this:

Branding a PageLink target Page

2008-07-10 Thread jensiator
Hi Does anyone know if its possible to brand the target/response page for a PageLink in wicket? I have a core jar with all the base classes. I then have a war project that depends on the core jar (using Maven2 + Idea). There will be a war for every customer. Im able to brand everything I want to

Re: (Wicket + Netbeans) without (Maven + NB.WicketPlugin)

2008-07-10 Thread wickid
i think i've found a solution! i have defined in netbeans two minimal versions of the two libraries: wicket_minimal and slf4j_minimal wicket_minimal consists only of: 1) wicket-1.4-m2.jar 2) wicket-auth-roles-1.4-m2.jar 3) wicket-extensions-1.4-m2.jar slf4j_minimal consists only of: 1)

Re: Best way to debug big session size?

2008-07-10 Thread Johan Compagner
try it with yourkit? i know it is still a bit of work but normally if you do a request and after the request you look at the HttpSession and see how big it is, you should be able to pin point the biggest retained size johan On Thu, Jul 10, 2008 at 5:24 AM, Timo Rantalaiho [EMAIL PROTECTED]

Re: Branding a PageLink target Page

2008-07-10 Thread greeklinux
Hello, I am not understanding exactly what you mean with branding. Dynamicaly configure the PageLink Target for a customer? greetings jensiator wrote: Hi Does anyone know if its possible to brand the target/response page for a PageLink in wicket? I have a core jar with all the base

Re: DateTextField bug : no validation and giving null to Hibernate

2008-07-10 Thread Igor Vaynberg
try wicket 1.3.4 first. -igor On Thu, Jul 10, 2008 at 2:49 AM, Joseph P. [EMAIL PROTECTED] wrote: Hi We have found it : it's the getRequestCycleSettings().setGatherExtendedBrowserInfo(true); setting in the application initSettings() which was causing all this fuss. Since we commented it

Re: DateTextField bug : no validation and giving null to Hibernate

2008-07-10 Thread Ryan Gravener
If you are accessing any extended browser information, be sure to access that information in your constructor. That way you will not be redirect while submitting your form. On Thu, Jul 10, 2008 at 9:55 AM, Igor Vaynberg [EMAIL PROTECTED] wrote: try wicket 1.3.4 first. -igor On Thu, Jul 10,

Re: DateTextField bug : no validation and giving null to Hibernate

2008-07-10 Thread Joseph P.
Ok, we will :) bye -- View this message in context: http://www.nabble.com/DateTextField-%22bug%22-%3A-no-validation-and-giving-null-to-Hibernate-tp18379140p18384019.html Sent from the Wicket - User mailing list archive at Nabble.com.

listchoice filtered by textfield ajax help

2008-07-10 Thread taygolf
Hey guys, I have a question for yall. I want to have a listchoice that holds a list of options that can be selected by the user. Then I want to have an optional textfield. IF the textfield is blank I want all choices to show up in the listchoice. If it is not blank I want to filter the choices

Re: DateTextField bug : no validation and giving null to Hibernate

2008-07-10 Thread Joseph P.
It's not better in 1.3.4... I'll open the issue later on. bye Joseph -- View this message in context: http://www.nabble.com/DateTextField-%22bug%22-%3A-no-validation-and-giving-null-to-Hibernate-tp18379140p18384463.html Sent from the Wicket - User mailing list archive at Nabble.com.

Inline JavaScript form submit

2008-07-10 Thread rit
Hi All, I have an added Behaviour on button to prevent double submitting . i have added inline script button.setOnClickScript(this.disabled = true; this.className = this.className + ' disabled'; ); which is working fine for me and disabling my button on first click , but the issue is after

Re: listchoice filtered by textfield ajax help

2008-07-10 Thread wicket user
try attaching a AjaxFormComponentUpdatingBehavior to your textfield and repaint the listchoice regards dipu On Thu, Jul 10, 2008 at 3:38 PM, taygolf [EMAIL PROTECTED] wrote: Hey guys, I have a question for yall. I want to have a listchoice that holds a list of options that can be selected

Re: Direclty using parent's compoundpropertymodel not possible ?

2008-07-10 Thread Per Newgro
Am Donnerstag, 10. Juli 2008 09:08:08 schrieb ZedroS: Thanks a lot for your answer. One question though : Johan Compagner wrote: CPM is used that child components can have sub objects/properties of that main object by using the child components id as the property how can I easily get the

Re: Wicket Widget

2008-07-10 Thread Carlos Pita
Hi, you are working with html. seems like a resonable approach from our end of things. I agree. Well, I've postprocessed the output through a couple of regexps because the task was too simple to be done by xslt or dom machinery. But now I've hit another problem: links are generated relative

Re: pdf download - dynamically generated pdf

2008-07-10 Thread mfs
Looking for some suggestions... mfs wrote: Guys, I have use-case where a user can choose to preview a pdf, displayed inline in the browser window (without being prompted for the save/open dialog). The functionality is working all fine, its just that an IllegalStateException is being

Re: Resource/SharedResource - Display an image

2008-07-10 Thread Roland Huss
Hi, greeklinux wrote: your solution works. But the problem is that I am already registering the resource in an Initializer. But ok... When you bind a resource reference to an application, it's not about registering the resource itself but looking it up. My fault. greeklinux wrote:

London Wicket Event, August 6 at Google, London

2008-07-10 Thread jWeekend
Al and I would like to invite those of you that can get to London on August 6 to our next London Wicket Event at Google's London office - thanks to all involved at Google (especially Al) for kindly hosting us and for the great support. We'll be posting details soon (we have some impressive

Re: Testing behavior of a ModalWindows: close, click...

2008-07-10 Thread Timo Rantalaiho
On Thu, 10 Jul 2008, Daniele Dellafiore wrote: click on link opens a ModalWindow (OK) check that the Modal is open indeed (OK, with tester.assertComponentOnAjaxResponse(deleteModal);) click on a confirm button on the page in the modal, and test that the element has been deleted (NO!!!)

Re: Inline JavaScript form submit

2008-07-10 Thread Timo Rantalaiho
On Thu, 10 Jul 2008, rit wrote: which is working fine for me and disabling my button on first click , but the issue is after disabling submit button it should called my perform method. which is not getting called . it just refresh my page. Have you checked if there are validation errors?