[Wicket-user] Query on Confirm message box Message

2006-05-28 Thread Imran M Yousuf
Dear Users, I am a new developer to Wickets and was wondering how to perform confirm actions, such as upon deletion. I was wondering whether Java Script would work from the HTML. I would be glad if someone would reply to my mail. Thank you. Imran M Yousuf Software Engineer United IT Global

[Wicket-user] I require Ajax TextArea

2006-07-06 Thread Imran M Yousuf
WebPage{     private static final long serialVersionUID = 1887L;     SampleTextArea area;     String areaModel = "Imran M Yousuf";         public AutherizationPageSample(){         area = new SampleTextArea("area");         area.setModel(new Model(areaModel));         AjaxFal

Re: [Wicket-user] I require Ajax TextArea

2006-07-07 Thread Imran M Yousuf
extends WebPage {     private static final long serialVersionUID = 1887L;     SampleTextArea area;     String areaModel = "Imran M Yousuf";     public AutherizationPageSample() {         area = new SampleTextArea("area");         Hashtable tab = new Hashtable();    

Re: [Wicket-user] I require Ajax TextArea

2006-07-08 Thread Imran M Yousuf
Dear EelcoThanks once again for enlightening me. I would still apraise a comment on my method. Thanks in advance.Imran 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 Appli

[Wicket-user] How PageableListView retrieves data from a list

2006-07-08 Thread Imran M Yousuf
Dear Users, I have a small question. Asking it as I wanted to know how does PageableListView fetch data from a List? Does it use List.get(int index) or does it use List.subList(int fromIndex, int toIndex) or does it use someother method? Thanks in advance. Imran

[Wicket-user] How PageableListView retrieves data from a list

2006-07-08 Thread Imran M Yousuf
Dear Users, I have a small question. Asking it as I wanted to know how does PageableListView fetch data from a List? Does it use List.get(int index) or does it use List.subList(int fromIndex, int toIndex) or does it use someother method? Thanks in advance. Imran --

Re: [Wicket-user] VOTE: how should localized attributes work?

2006-08-03 Thread Imran M Yousuf
1 [X] as in this case every attribute would be assignable from java Imran - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & bus

[Wicket-user] Output Stream Encoding

2006-09-05 Thread Imran M Yousuf
Hi dear Users,I have a requirement that I need to cofigure the language encoding based on the Request Header "accept-charset". If this is not available than we have our default charset. Now I am overriding the configureResponse() and NOT calling super.configureResponse(). But I am using the same l

Re: [Wicket-user] Output Stream Encoding

2006-09-05 Thread Imran M Yousuf
Thanks Jurgern.Dear Users I am confirming my experience on this issue:When I load a Link, i.e. request header referrer is null I get the configure response without the Output stream being opened. So even if I set the output stream encoding from the filter it gets overriden and it writes in the defa

[Wicket-user] Link behaviour inconsistent

2006-09-10 Thread Imran M Yousuf
Dear Users,I am using Link implementation in my application to navigate. When the server restarts all the links that are of Link implementation starts behaving strangely and goes to a page that is not even navigateable from that page. Can someone let me know what the reason could be? The links that

Re: [Wicket-user] Link behaviour inconsistent

2006-09-10 Thread Imran M Yousuf
d use BookmarkablePageLInks when you want to provide bookmarks to your pages. You can read more on the subject here: http://www.javalobby.org/java/forums/t61556.html Martijn On 9/10/06, Imran M Yousuf <[EMAIL PROTECTED]> wrote: > Dear Users, > > I am using Link implementation in my app

Re: [Wicket-user] Link behaviour inconsistent

2006-09-10 Thread Imran M Yousuf
strange to me because that link is just a page request link.  It is not an url of a link on the page. that should be something like this: http://www.wicket-library.com/wicket-examples/linkomatic?wicket:interface=:0:actionLink::ILinkListener johan On 9/10/06, Imran M Yousuf < [EMAIL PROTEC

Re: [Wicket-user] Link behaviour inconsistent

2006-09-10 Thread Imran M Yousuf
Dear Johan, What you said is correct. But I press refresh of the browser it does not give page expired, instead it gets the original page from the Server. But before getting it, it shows pages that is not even in the flow. Can we relate it to browser caching directly and rationally? I have set the

[Wicket-user] Absolute URL in Link's HREF

2006-09-15 Thread Imran M Yousuf
Dear Users,I have a requirement where I need the URL in HREF of a hyperlink to be absolute path for the resource. Hyperlink is created using implementation of Link. I know the the following way of doing it -- use getURL of Link - Append it with the Server Address and ContextPath- Use Attribute Modi