Re: resource mapping and dot in url

2008-11-19 Thread ak
The problem is with security procedures set forth by IIS admin folks. Please follow this link for more nicer explanation. http://forums.iis.net/p/1150133/1872812.aspx Hope I am making myself clear. Any ideas ? Thanks, Andy -- View this message in context:

resource mapping and dot in url

2008-11-18 Thread ak
Hello, I have IIS forwarding request to weblogic 10.3 where my wicket-app resides. We had tough time figuring out why our app wouldn't run as expected when it is served from IIS. Ajax, js and css failed to load properly. After strenuous analysis, looks like the problem was with not allowing

onComponentTag tag.append() javascript events ?

2008-08-12 Thread ak
Hello, I stumbled upon this scenario wherein I have 'onclick=doSomething()' associated with a button on the html page. Then there is a behaviour that sets onclick event from java code for button component as: public void onComponentTag(Component component, ComponentTag tag){

Re: Label to Uppercase

2008-05-08 Thread ak
Brilliant suggestions ... Thanks Eelco and Jeremy. In our proj we attach a behavior to TextField/TextArea like this, but tied to a specifc event as onblur. public class ToUpperCaseBehavior extends AbstractBehavior { public void onComponentTag(Component component, ComponentTag tag){

Label to Uppercase

2008-05-07 Thread ak
Hello, I need your suggestion on, what are the ways I can get Label to print in Uppercase. Couple of ways I know are: 1. I can do it with CSS 2. I can make all fields String.toUpperCase() 3. I can seek your advice :) My code is like: Label label = new Label(id) { @Override

Re: Override IE AutoComplete with wicket's AutoCompleteTextField

2008-04-17 Thread ak
Thank you Ryan and Gerolf. I also came across this useful post for anyone reading this thread ... http://www.jroller.com/wireframe/entry/wicket_autocomplete_text_field -Andy -- View this message in context:

Override IE AutoComplete with wicket's AutoCompleteTextField

2008-04-16 Thread ak
Hello, I have implemented wicket AutoCompleteBehavior on TextField. All seems to work fine until I stumbled upon this issue. Example when I type 'A', I see IE's auto complete overlapping my wicket implementation of autocomplete behaviour with previously recorded value(example 'Apple'). However,