line:1011; Wicket.ajax.call is null or not a object.
> Message: 2 > Date: Sat, 24 Mar 2007 18:47:45 -0700 > From: "Igor Vaynberg" <[EMAIL PROTECTED]> > Subject: Re: [Wicket-user] the modal window cannot work in ie fro > wicket 2.0 snapshot > To: wicket-user@lists.sourceforge.net > Message-ID: > <[EMAIL PROTECTED]> > Content-Type: text/plain; charset="iso-8859-1" > > whats the error? > > -igor > > On 3/24/07, lihanrong <[EMAIL PROTECTED]> wrote: >> >> I had mentioned it a week before, but it is still not fixed now. >> ------------------------------------------------------------------------- >> 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 & business topics through brief surveys-and earn cash >> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV >> _______________________________________________ >> Wicket-user mailing list >> Wicket-user@lists.sourceforge.net >> https://lists.sourceforge.net/lists/listinfo/wicket-user >> > -------------- next part -------------- > An HTML attachment was scrubbed... > > ------------------------------ > > Message: 3 > Date: Sat, 24 Mar 2007 18:48:02 -0700 > From: "Igor Vaynberg" <[EMAIL PROTECTED]> > Subject: Re: [Wicket-user] the modal window cannot work in ie fro > wicket 2.0 snapshot > To: wicket-user@lists.sourceforge.net > Message-ID: > <[EMAIL PROTECTED]> > Content-Type: text/plain; charset="iso-8859-1" > > and have you opened a jira issue? > > -igor > > > On 3/24/07, Igor Vaynberg <[EMAIL PROTECTED]> wrote: >> >> whats the error? >> >> -igor >> >> On 3/24/07, lihanrong <[EMAIL PROTECTED]> wrote: >> > >> > I had mentioned it a week before, but it is still not fixed now. >> > >> > ------------------------------------------------------------------------- >> > 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 & business topics through brief surveys-and earn cash >> > >> > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV >> > _______________________________________________ >> > Wicket-user mailing list >> > Wicket-user@lists.sourceforge.net >> > https://lists.sourceforge.net/lists/listinfo/wicket-user >> > >> >> > -------------- next part -------------- > An HTML attachment was scrubbed... > > ------------------------------ > > Message: 4 > Date: Sun, 25 Mar 2007 09:15:13 +0000 (UTC) > From: Kent Tong <[EMAIL PROTECTED]> > Subject: [Wicket-user] locale filtering > To: wicket-user@lists.sourceforge.net > Message-ID: <[EMAIL PROTECTED]> > Content-Type: text/plain; charset=us-ascii > > Hi, > > If a given web app only supports say English (default) and French but the > browser prefers German the most, then the getLocale() on the request will > return German and that will be stored into the wicket session. The result > is that all built-in components will output messages in German, while the > messages output by the app itself will be in English. > > A solution is that Wicket should note that German is not a supported locale > and thus will store English into the session. Currently it seems that the > only way to do it is to override WebApplication.newWebRequest() to return > a subclass of ServletWebRequest that performs this kind of locale filtering. > > Is there any better way? > > Thanks. > > > > > ------------------------------ > > Message: 5 > Date: Sun, 25 Mar 2007 11:28:39 +0200 > From: "Juergen Donnerstag" <[EMAIL PROTECTED]> > Subject: Re: [Wicket-user] locale filtering > To: wicket-user@lists.sourceforge.net > Message-ID: > <[EMAIL PROTECTED]> > Content-Type: text/plain; charset=ISO-8859-1; format=flowed > > I'm not aware of any better way. It sounds reasonable simple to me. > > Juergen > > On 3/25/07, Kent Tong <[EMAIL PROTECTED]> wrote: >> Hi, >> >> If a given web app only supports say English (default) and French but the >> browser prefers German the most, then the getLocale() on the request will >> return German and that will be stored into the wicket session. The result >> is that all built-in components will output messages in German, while the >> messages output by the app itself will be in English. >> >> A solution is that Wicket should note that German is not a supported locale >> and thus will store English into the session. Currently it seems that the >> only way to do it is to override WebApplication.newWebRequest() to return >> a subclass of ServletWebRequest that performs this kind of locale filtering. >> >> Is there any better way? >> >> Thanks. >> >> >> ------------------------------------------------------------------------- >> 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 & business topics through brief surveys-and earn cash >> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV >> _______________________________________________ >> Wicket-user mailing list >> Wicket-user@lists.sourceforge.net >> https://lists.sourceforge.net/lists/listinfo/wicket-user >> > > > > ------------------------------ > > Message: 6 > Date: Sun, 25 Mar 2007 03:12:43 -0700 > From: "Eelco Hillenius" <[EMAIL PROTECTED]> > Subject: Re: [Wicket-user] locale filtering > To: wicket-user@lists.sourceforge.net > Message-ID: > <[EMAIL PROTECTED]> > Content-Type: text/plain; charset=ISO-8859-1; format=flowed > > In Wicket 1.3: > > public class MyApplication extends WebApplication { > > @Override > public Session newSession(Request request) { > return new MySession(this, request); > } > ... > > public class MySession extends WebSession { > > private Set<Locale> supportedLocales = ...; > private Locale defaultLocale = ...; > > public MySession(Application application, Request request) { > super(application, request); > Locale l = request.getLocale(); > setLocale(supportedLocales.contains(l) ? l : defaultLocale); > } > ... > > > Eelco > > > On 3/25/07, Kent Tong <[EMAIL PROTECTED]> wrote: >> Hi, >> >> If a given web app only supports say English (default) and French but the >> browser prefers German the most, then the getLocale() on the request will >> return German and that will be stored into the wicket session. The result >> is that all built-in components will output messages in German, while the >> messages output by the app itself will be in English. >> >> A solution is that Wicket should note that German is not a supported locale >> and thus will store English into the session. Currently it seems that the >> only way to do it is to override WebApplication.newWebRequest() to return >> a subclass of ServletWebRequest that performs this kind of locale filtering. >> >> Is there any better way? >> >> Thanks. >> >> >> ------------------------------------------------------------------------- >> 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 & business topics through brief surveys-and earn cash >> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV >> _______________________________________________ >> Wicket-user mailing list >> Wicket-user@lists.sourceforge.net >> https://lists.sourceforge.net/lists/listinfo/wicket-user >> > > > > ------------------------------ > > Message: 7 > Date: Sun, 25 Mar 2007 14:10:10 +0200 > From: Harald Gruber <[EMAIL PROTECTED]> > Subject: Re: [Wicket-user] locale filtering > To: wicket-user@lists.sourceforge.net > Message-ID: <[EMAIL PROTECTED]> > Content-Type: text/plain; charset=ISO-8859-1; format=flowed > > > dont know, if its the best way, but i set the locale in my session > constructor: > > public MyWebSession(...) { > super(application, request); > if (!WebApp.SUPPORTEDLOCALES_LIST.contains(getLocale())) { > setLocale(WebApp.DEFAULT_LOCALE); > log.debug("Setting locale to " + getLocale()); > } > } > > > > > > > ------------------------------ > > Message: 8 > Date: Sun, 25 Mar 2007 10:22:30 -0400 > From: Nathan Hamblen <[EMAIL PROTECTED]> > Subject: Re: [Wicket-user] the modal window cannot work in ie fro > wicket 2.0 snapshot > To: wicket-user@lists.sourceforge.net > Message-ID: <[EMAIL PROTECTED]> > Content-Type: text/plain; charset=ISO-8859-1; format=flowed > > Modal windows just started not working for me in 1.3.0 snapshots, maybe > around the time the close method stopped being static. The models of > components inside them aren't being detached; I'm using a Panel as > content. I can do more research if need be, but it seems to be broken > pretty unsubtly and because of some recent checkin. > > Nathan > > Igor Vaynberg wrote: >> and have you opened a jira issue? >> >> -igor >> >> >> On 3/24/07, *Igor Vaynberg* <[EMAIL PROTECTED] >> <mailto:[EMAIL PROTECTED]>> wrote: >> >> whats the error? >> >> -igor >> > > > > > ------------------------------ > > Message: 9 > Date: Sun, 25 Mar 2007 23:21:39 +0800 > From: "lihanrong" <[EMAIL PROTECTED]> > Subject: [Wicket-user] Nobody can fix the ajax modal window bug in 2.0 > snapshot? > To: <wicket-user@lists.sourceforge.net> > Message-ID: <[EMAIL PROTECTED]> > Content-Type: text/plain; charset="iso-8859-1" > > I had try it again and again at last serveral week, it cannot work well in > ie. anybody can try the ajax modal window in example to get the "ajax call " > error. > > I need use the datagrid view , so i have to upgrade the app to the current > snapshot, the grid view in example can work for current snapshot. > but I find some api had changed , and it' seem no one care about the the 2.0 > snap now, dev team will change the constructor to back again :( . i guess the > 2.0 will not be released in a short time. > > > > ------------------------------ > > ------------------------------------------------------------------------- > 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 & business topics through brief surveys-and earn cash > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > > ------------------------------ > > _______________________________________________ > Wicket-user mailing list > Wicket-user@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/wicket-user > > > End of Wicket-user Digest, Vol 10, Issue 217 > ******************************************** ------------------------------------------------------------------------- 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 & business topics through brief surveys-and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV _______________________________________________ Wicket-user mailing list Wicket-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/wicket-user