Re: [Wicket-user] Pattern for seperation of Java and Html - Comments Welcome

2007-05-25 Thread Kadir Sener GUMUS
ings really dynamic?) because if i look at the source then the basket is wicket made but the rest of the page is something else. i also see the wicket tags and ids everywhere. Do you start wicket in development mode on your server? johan On 5/23/07, Kadir Sener GUMUS <[EMAIL PROTECTED]> wrote

Re: [Wicket-user] Pattern for seperation of Java and Html - Comments Welcome

2007-05-23 Thread Kadir Sener GUMUS
s-weltreisen.de, www.adacreisen.de these sites can be completely success-stories of Wicket-Hibernate-Spring triology. Regards, Kadir Sener GUMUS On 5/22/07, mchack <[EMAIL PROTECTED]> wrote: Thanks for the reply. Not suggesting it should be part of the main distribution. I am new to the

Re: [Wicket-user] DatePicker format instructions ignored

2007-05-14 Thread Kadir Sener GUMUS
Hi, here it is a code piece of ours below. i hope it is usefull for you: .. * private* *static* *final* String *DATETIMEPATTERN* = "dd.MM. - HH:mm"; ... SimpleDateFormat dateTimeFormatter = (SimpleDateFormat)SimpleDateFormat.* getDateTimeInstance*(); dateTimeFormatter.applyPattern(

Re: [Wicket-user] JIRA issue? Buggy behaviour in PageMap.access(IPageMapEntry, int). Wicket1.2.4

2007-04-20 Thread Kadir Sener GUMUS
ail threads? Eelco On 4/19/07, Kadir Sener GUMUS <[EMAIL PROTECTED]> wrote: > Hi all, > in our application, we were experiencing PageExpired pages. When i digged in > wicket sources i found something causes my problem and now it is ok after > change the behaviour. I dont know if it w

[Wicket-user] JIRA issue? Buggy behaviour in PageMap.access(IPageMapEntry, int). Wicket1.2.4

2007-04-19 Thread Kadir Sener GUMUS
e.getCurrentVersionNumber() != access.version) { // Remove whole page remove(topPage); } } regards, Kadir Sener GUMUS - This SF.net email is sponsored by DB2 Express Download DB2 Express C - the FREE version of DB2 express and take

[Wicket-user] [wicket 1.2.4] JIRA issue? Ampersand char problem in "wicket.markup.html.link.ExternalLink.java"

2007-01-23 Thread Kadir Sener GUMUS
Hi all, i experienced a problem with "href" attribute of rendered ExternalLink. In our application, i needed to parse rendered html in a SaxParser implementation. But i couldnt! When i looked in source codes of ExternalLink and Link, i saw the problematic line is that, in ExternalLink there is no

Re: [Wicket-user] Bug or not? NPE in "wicket.markup.html.form.Check.java" Wicket1.2.4

2007-01-19 Thread Kadir Sener GUMUS
https://issues.apache.org/jira/browse/WICKET-223 -igor On 1/19/07, Kadir Sener GUMUS <[EMAIL PROTECTED]> wrote: > Hi, > i have experienced a NullPointerException in Check.java during render of > my page. I have a page which has DropDownChoice ( > wantOnSelectionChangedNotifications=true) a

[Wicket-user] Bug or not? NPE in "wicket.markup.html.form.Check.java" Wicket1.2.4

2007-01-19 Thread Kadir Sener GUMUS
Hi, i have experienced a NullPointerException in Check.java during render of my page. I have a page which has DropDownChoice ( wantOnSelectionChangedNotifications=true) and CheckGroup (contains Check objects). If i change the dropdown, and refreshes the page, then i am getting NullPE as below:

[Wicket-user] creating a mountBookmarkablePage with PageMap

2007-01-17 Thread Kadir Sener GUMUS
Hi, i want to mount a bookmarkablePage with custom pagemap parameter in Application.init() but as a normal result i am experiencing with no session error. Because PageMap.forName("") requires a session. so can i ask you what the method "*mountBookmarkablePage(String path, PageMap pageMap, Class bo