Autocomplete text box problems in Firefox 2.x

2007-12-07 Thread yyj
I am using the onchange event of an autocomplete text field to populate a simple text box. The text related to the value selected in the autocomplete text box is populated correctly in Firefox 1.5. However the value cannot be seen in FF 2.x and Internet Explorer. I am pasting the related code belo

Re: HTML & .properties reload

2007-12-07 Thread mnwicket
I have the development property set as usual in my web.xml and both the HTML file and properties files do not refresh them selves. Johan Compagner wrote: > > It could be that the default is changed, besides that i dont know if > property changes are really seen. Html pages are refreshed when yo

vertical TabbedPanel

2007-12-07 Thread Beyonder Unknown
Hi All, Have anybody here implemented a vertical TabbedPanel? I looked at wicket extension tabbedPanel but it doesn't have a property to render vertical one. Any help will be greatly appreciated. Regards, Allan -- The only constant in life is change. __

Re: HTML & .properties reload

2007-12-07 Thread Johan Compagner
It could be that the default is changed, besides that i dont know if property changes are really seen. Html pages are refreshed when you are in development mode. Just set it in your web.xml or use the system property -Dwicket.configuration=Development 2007/12/7, mnwicket <[EMAIL PROTECTED]>: > > Y

Re: howto include wicket in a JSP page with version 1.3-rc1

2007-12-07 Thread Johan Compagner
Replace whole page by page, or better a functionality block by block 2007/12/7, Murat Yücel <[EMAIL PROTECTED]>: > What would your suggestion be. To start from a fresh? > > I know that it is hard. Thats why i said only view parts (no links no > forms etc) as panels which actually means wicket page

Re: howto include wicket in a JSP page with version 1.3-rc1

2007-12-07 Thread Murat Yücel
What would your suggestion be. To start from a fresh? I know that it is hard. Thats why i said only view parts (no links no forms etc) as panels which actually means wicket pages so they can be included through struts. /Murat 2007/12/7, Johan Compagner <[EMAIL PROTECTED]>: > I think thats prety

Re: HTML & .properties reload

2007-12-07 Thread mnwicket
Yes, has that changed? Johan Compagner wrote: > > Do you still start wicket in development mode? > > 2007/12/7, mnwicket <[EMAIL PROTECTED]>: >> >> I just upgraded from wicket beta2 to rc1 and found that my HTML pages and >> .properties aren't automatically being reloaded as usual. Did someth

Re: HTML & .properties reload

2007-12-07 Thread Johan Compagner
Do you still start wicket in development mode? 2007/12/7, mnwicket <[EMAIL PROTECTED]>: > > I just upgraded from wicket beta2 to rc1 and found that my HTML pages and > .properties aren't automatically being reloaded as usual. Did something > change? I didn't see anything in the release notes. >

Re: Tabbing from one AjaxEditableLabel to the next

2007-12-07 Thread Johan Compagner
I think you need some javascript hacking because there is no input field yet that could be targetted and what is the next one? Labels dont really have a tab sequence or maybe if you use the labelfor property somehow? Of course this could be somehow also coded in the wicket component, for example y

Re: howto include wicket in a JSP page with version 1.3-rc1

2007-12-07 Thread Johan Compagner
I think thats prety hard to do. Because if you where able to render only a panel. What happens if i click on a link on that part? Then it has to find the page, so you have to have a dummy page.. And then after the link click you have to somehow caputere that again and render first the struts page a

Re: parameters in Form set to null after coming back from RestartResponseAtInterceptPageException

2007-12-07 Thread Johan Compagner
I guess if you dont post but do a get then it works, but it is not easy to do a redirect again that should be a post 2007/12/7, Maurice Marrink <[EMAIL PROTECTED]>: > No mistake. > Wicket does not remember any params when storing an url to later return to. > I had the same problem a while back and

Re: howto include wicket in a JSP page with version 1.3-rc1

2007-12-07 Thread Murat Yücel
Has any of the developers a comment to this? Is it possible to mix wicket with struts? For example forms could be a big issue. I guess it should be possible to include wicket panels in struts as long as it is only used for view. For example make a pie chart panel in wicket. /Murat 2007/11/29, Mur

Re: Wicket behind a front-end proxy

2007-12-07 Thread Murat Yücel
Hi, My configuration will just confuse everybody because it is too big. The best solution is just to follow the instruction on the wiki page. If it is not enough then you have a some basic configuration here: NameVirtualHost *:80 ServerAlias wicket DocumentRoot /var/www/wicket

WicketMessageTagHandler on non-Wicket component

2007-12-07 Thread NateBot20002
Howdy: I'm trying to use a WicketMessageTagHandler to alter an attribute on a non-Wicket-id html A tag, but with Wicket Image components nested inside it. Wicket throws the standard "referenced in markup, but not in code" hierarchy exception. Is there a way around this? My markup: Re: Wicket behind a front-end proxy
Murat, Can you post the error in your configuration? J On Dec 7, 2007 4:55 AM, Murat Yücel <[EMAIL PROTECTED]> wrote: > Hi All > > Sorry for given such a late response, but Al Maw was right. This is > supported by wicket. > My apache configuration was wrong. Niels it has nothing to do with web

Re: Any example of using DataView with Forms?

Oh I did it ... The previous code need small changes: Model model = new Model(new AttributeDescriptor()); addAttributeForm.setModel(model); DropDownChoice attributeDescriptor = new DropDownChoice("attributeDescriptors", model, getAttributeDAO().getAllAttributeDescriptors()); and then we can use: p

Re: Any example of using DataView with Forms?

Hi Adr, http://www.cs.tut.fi/~jkorpela/forms/tables.html Here they say that you have to put the form around the table. Maybe it works for you. Cheers Per -- View this message in context: http://www.nabble.com/Any-example-of-using-DataView-with-Forms--tf4962008.html#a14212791 Sent from the Wic

Re: Link to dynamic pdf (jasperreports)

Hello lizz, i use the JRPdfResource this way. On bottom i added the output from the sysouts. This is exactly the path where my jasper file is located. But it's still empty. Can i output anything else, so that i see my mistake? ServletContext context = ((WebApplication) getApplication()).getServl

Tabbing from one AjaxEditableLabel to the next

Hi, On a page with several AjaxEditableLabels (like [1]), is there a nice way to specify that the Tab key should select the next editable field (like ordinary input fields)? Or do I need to use some good old plain Javascript hacking? Thanks Niels [1] http://www.wicketstuff.org/wicket13/ajax

Any example of using DataView with Forms?

hello, I have problem with setting Forms on DataView. I have list of Consumer objects, each consumer has Set of attributes, I wanted to add DropDownChoice with all attributes, when pressing Add consumer would get new attribute to its Set, and will be saved in database. Quite simply but not form me

Form with multiple Ajax updating behaviours and standard SubmitLinks problems

Hi guys, I'm having an issue on a page that has many Ajax updating behviors. When the user clicks on one of the regular SubmitLinks, even there are pending Ajax requests, the HTTP POST is immediately done. Then, it appears that the previously in progress Ajax requests hit the new page, and f

Re: parameters in Form set to null after coming back from RestartResponseAtInterceptPageException

No mistake. Wicket does not remember any params when storing an url to later return to. I had the same problem a while back and after asking johan about it and finding out it was not possible we worked around the problem by not doing it. Something that might work for you is storing the request par

LightBox panel with dynamic content

Hi *, (maybe Uwe :-) i would like to exchange the images displayed on the panel provided by the lightbox "mini". It's designed to represent some images for a product. If i change the product, the images should be refreshed. But i can't reach the model use by the panel to replace the images, becau

parameters in Form set to null after coming back from RestartResponseAtInterceptPageException

I'm just learning wicket. I've done some examples using "Pro wicket" book. After hitting checkout on http://manta.univ.gda.pl/~szachara/Checkout.java Checkout.java there is authentication class ( http://manta.univ.gda.pl/~szachara/Login.java Login.java ) invoked by RestartResponseAtInterceptPage

Re: Checkbox tree component

Doug, great work! Can I just ask you a question, what does your implementation of the CategoryTreeModel look like? I've been trying all sorts of approaches for doing a similar category tree but I've never liked / got the model approach to work in a nice fashion. :) /Regards Mats On Oct 27, 2007 6

Re: Wicket behind a front-end proxy

Hi All Sorry for given such a late response, but Al Maw was right. This is supported by wicket. My apache configuration was wrong. Niels it has nothing to do with web seal. /Murat It has nothing to do 2007/11/18, Niels Bo <[EMAIL PROTECTED]>: > > Hi Murat! > > If you are running behind a WebSea

RE: Why is there no IHeaderResponse.renderCSS()?

Yes I'm using that, and it works OK. I was just wondering... Thanks, Bart. > -Oorspronkelijk bericht- > Van: Matej Knopp [mailto:[EMAIL PROTECTED] > Verzonden: vrijdag 7 december 2007 10:03 > Aan: users@wicket.apache.org > Onderwerp: Re: Why is there no IHeaderResponse.renderCSS()? > > Pr

Re: Why is there no IHeaderResponse.renderCSS()?

Probably just avoiding api clutter. You can always use IHeaderResponse.renderString. -Matej On Dec 7, 2007 9:38 AM, Bart Molenkamp <[EMAIL PROTECTED]> wrote: > Hi, > > Is there a special reason why there is no IHeaderResponse.renderCSS() > to render a String of CSS inline? There is something simi

Re: Suckerfish dropdowns for wicket

Why don't you post a comment to the article? -Matej On Dec 7, 2007 9:13 AM, tsuresh <[EMAIL PROTECTED]> wrote: > > Dear wicketeers > Has any one tried Suckerfish dropdowns in wicket. I saw one examle of it in > http://javathoughts.capesugarbird.com/2007/11/suckerfish-dropdowns-for-wicket.html >

Why is there no IHeaderResponse.renderCSS()?

Hi, Is there a special reason why there is no IHeaderResponse.renderCSS() to render a String of CSS inline? There is something similar for JavaScript: renderJavascript(CharSequence javascript, String id); I can only include CSS using ResourceReferences and urls. Is there any reason why this isn

Re: Wicket 1.3 rc1 Relative URLs not working properly

Jeremy Levy wrote: WICKET-1205 This might be Tomcat-specific. Can we take further discussion of this into the bug please, starting with what Tomcat version you're using. ;-) Regards, Al - To unsubscribe, e-mail: [EMAIL PRO

Suckerfish dropdowns for wicket

Dear wicketeers Has any one tried Suckerfish dropdowns in wicket. I saw one examle of it in http://javathoughts.capesugarbird.com/2007/11/suckerfish-dropdowns-for-wicket.html I tried to run the example but some error was shown with the message no get method for topMenuItems. Can some one please

Re: 302 vs. 301 Redirect

Exactly, a fully qualified url.. We dont have that so if that is needed then we have first another problem 2007/12/7, Joe Toth <[EMAIL PROTECTED]>: > I think so...something like > > res.setHeader("Location", "http://301redirect.com/ ); > res.setStatus(301); > > > On Thu, 2007-12-06 at 15:43 +0100,