Re: Wicket links does not work in Firefox/IE?

2010-07-04 Thread Duy Do
I still can not solve this issue, do you have any solution? Duy On Fri, Jul 2, 2010 at 6:28 PM, Duy Do doquoc...@gmail.com wrote: Hi all, I built a web app with Wicket and it works fine in Chrome, Safari but it does not work in Firefox and IE. In Firefox/IE after clicking on links of

Re: Wicket links does not work in Firefox/IE?

2010-07-04 Thread Martijn Dashorst
Unless you provide some code we can't help you. We all have applications deployed towards millions of users using Wicket, and yet they all work fine in all browsers. Martijn On Sun, Jul 4, 2010 at 11:34 AM, Duy Do doquoc...@gmail.com wrote: I still can not solve this issue, do you have any

Re: Correct way of setting charset

2010-07-04 Thread Antoine van Wel
Maybe this is what you need, in your WebApplication's init method : getMarkupSettings().setDefaultMarkupEncoding(UTF-8); On Fri, Jul 2, 2010 at 9:29 AM, Sigmar Muuga meedi...@gmail.com wrote: Hello, what is the correct way of setting my pages charset? I did something like this and it

Re: Ajax channel busy

2010-07-04 Thread nino martinez wael
Yeah it does seems as a problem.. what if you try putting in dummy functions with alerts in them? 2010/7/3 David Leangen wic...@leangen.net Ok, thanks, So, if it should be ok, I wonder why after the first execution, I only get INFO: Channel busy - postponing... So I can't use my

Page maps problem

2010-07-04 Thread Branislav Kalas
Hi, sorry for my terrible english.I am trying to achieve this: I have webapp where i want to allow users open some links in new window. I want to create new page maps for those windows (cause i think , it's correct (page expired problem)). In some pages i use pickers that opens modal windows

RE: Modal dialog with two forms on separate tabbed panels intermittently not working

2010-07-04 Thread Chris Colman
I found something strange in my code where setMarkupId was being called but I couldn't see a reason for it. I've removed that code and haven't seen the problem occur since so I'm keeping my fingers crossed that this was the cause. Regards, Chris -Original Message- From: Chris Colman

Re: 3.5 Hibernate 1.1 tutorial wicketized/eclipseized

2010-07-04 Thread David Brown
Hello, I put the hib-tut.zip file in my gmail uploaded files in a directory called uploads. I don't know what u need to do to get to my uploaded files on gmail. :-David. On Sat, 2010-07-03 at 10:29 -0700, rmh1981 wrote: David Brown wrote: i have a wicketized/eclipseized hibernate 1.1

Re: Wicket links does not work in Firefox/IE?

2010-07-04 Thread Duy Do
Thanks a lot for your reply, Martijn. I use Wicket in normal way but it seems that I had some problems. *This is code for rendering view,the navigation (IndexPanel) included:* public class ViewWidgetPanel extends CardWidgetPanelWidgetBuilder?, View implements ViewWidgetBuilderPanel { private

Re: Ajax channel busy

2010-07-04 Thread David Leangen
Ok, this is fun. It was due to an error in my script. I've been doing Java for so many years that I forgot how to use a dynamic language. I guess I'm too used to having the compiler tell me how much of an idiot I am so I have less pain at runtime. ;-) BTW, for you experts in js, is there any

Re: How to override container markup package loaction?

2010-07-04 Thread Arjun Dhar
Ernest, Igor -- thanks! I had gone to that wiki earlier; I only focussed on the section that talked about Wicket 1.3 (which only allows to change location in Classpath) so I missed the point. I saw 1.2 and modified the code to pick up any file from the ServletContext; and it works with the code

Single inheritence in parts

2010-07-04 Thread Arjun Dhar
Hi, all the examples etc suggest that Single inheritence is possible but I cant break it up. The break up is essential when you want to merge common parts of your MARKUP with multiple specific parts of the Child page. Example: HTML HEADtitleBASE TEMPLATE / PARENT PAGE/title/HEAD BODY

Re: Correct way of setting charset

2010-07-04 Thread Sigmar Muuga
Don't know that if is it the most correct way or not, but it works. My dotted letters are now working. But this option applies only to markup? What about other content(like JSON)? Sigmar On Sun, Jul 4, 2010 at 7:31 PM, Antoine van Wel antoine.van@gmail.comwrote: Maybe this is what you