Custom CSS-Class for OrderByLink (possible?)

2012-01-06 Thread Rain... Is wet!
Hi, I'm currently extending the DataTable and used classes to support some more stuff. I already extended OrderByLink to get the ability for interpreting additional request-parameter and this is working just fine. The only thing thats left for now is a way to extend the given SortState to provide

Re: Numeric Filter on TextField

2012-01-06 Thread codix
Thank you for the reply. I was thinking of integrating it not on the HTML markup but on the class itself. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Numeric-Filter-on-TextField-tp4264649p4268648.html Sent from the Users forum mailing list archive at Nabble.com.

Re: Custom CSS-Class for OrderByLink (possible?)

2012-01-06 Thread Martin Grigorov
Hi, Which version of Wicket is this ? In Wicket 1.5 ISortState is an interface and SingleSortState is a class. They are not enums and are definitely extendable On Fri, Jan 6, 2012 at 10:15 AM, Rain... Is wet! oryp-moel...@hotmail.de wrote: Hi, I'm currently extending the DataTable and used

Re: Numeric Filter on TextField

2012-01-06 Thread Rain... Is wet!
Maybe this is more helpful to You than my previous post: http://www.mkyong.com/wicket/how-to-dynamic-add-attribute-to-a-html-tag-in-wicket/ - Never forget your umbrella ! In case You did, try to find a shelter ;) -- View this message in context:

Re: Custom CSS-Class for OrderByLink (possible?)

2012-01-06 Thread Rain... Is wet!
I'm using 1.5 and You're right, was just a typo of mine, I ment the enum SortOrder, not SingleSortState or ISortState... - Never forget your umbrella ! In case You did, try to find a shelter ;) -- View this message in context:

Re: Custom CSS-Class for OrderByLink (possible?)

2012-01-06 Thread Martin Grigorov
what other order you need ? On Fri, Jan 6, 2012 at 10:48 AM, Rain... Is wet! oryp-moel...@hotmail.de wrote: I'm using 1.5 and You're right, was just a typo of mine, I ment the enum SortOrder, not SingleSortState or ISortState... - Never forget your umbrella ! In case You did, try to find

Re: Custom CSS-Class for OrderByLink (possible?)

2012-01-06 Thread Rain... Is wet!
In DataProvider i implemented a List of columns in which there should be generated group-totals. In addition to the given SortOrders NONE, ASCENDING, DESCENDING I need NONESUM, ASCENDINGSUM, DESCENDINGSUM. What I've come so far is the ability to set those attributes via an additional

RE: Wicket on Google App Engine

2012-01-06 Thread Hielke Hoeve
Hey Daniel, Glad to hear you got it working as well. I have some apps on google app engine as well. Tried all the tutorials and 'useful' maven plugins but all just didn't do the trick for me. I now use maven's resources plugin to copy the resources from the maven repository to the war/lib

Re: Custom CSS-Class for OrderByLink (possible?)

2012-01-06 Thread Rain... Is wet!
Found an not so complicated way to implement own css-class to orderbylink. After calling the constructor of the superclass I just removed the standard-css Modifier and added my own implementation instead. this.removeAll(); this.add(new

1.5 serialization fun

2012-01-06 Thread nino martinez wael
Hi Guys we are having an issue on one of our more complex pages and are getting an error like this: 2012-01-06 12:29:20,057 ERROR [http-bio-8080-exec-10] (JavaSerializer.java:94) - Error serializing object class com.netdesign.wallboard.page.ViewerPage [object=[Page class =

Re: 1.5 serialization fun

2012-01-06 Thread Martin Grigorov
There was a bug in SerializationChecker which is fixed either in 1.5.3 or trunk. On Fri, Jan 6, 2012 at 2:07 PM, nino martinez wael nino.martinez.w...@gmail.com wrote: Hi Guys we are having an issue on one of our more complex pages and are getting an error like this: 2012-01-06 12:29:20,057

Re: 1.5 serialization fun

2012-01-06 Thread nino martinez wael
We are running 1.5.3 .. So it's in trunk I guess, do you know what the error did? 2012/1/6 Martin Grigorov mgrigo...@apache.org There was a bug in SerializationChecker which is fixed either in 1.5.3 or trunk. On Fri, Jan 6, 2012 at 2:07 PM, nino martinez wael nino.martinez.w...@gmail.com

Re: 1.5 serialization fun

2012-01-06 Thread Martin Grigorov
The problem was that Wicket doesn't produce the nice formatted error message pointing to the component which holds a reference to the non-serializable class. https://issues.apache.org/jira/browse/WICKET-4264 On Fri, Jan 6, 2012 at 2:27 PM, nino martinez wael nino.martinez.w...@gmail.com wrote:

Re: 1.5 serialization fun

2012-01-06 Thread nino martinez wael
Any idea on how far 1.5.4 are in the release process? 2012/1/6 Martin Grigorov mgrigo...@apache.org The problem was that Wicket doesn't produce the nice formatted error message pointing to the component which holds a reference to the non-serializable class.

Re: 1.5 serialization fun

2012-01-06 Thread Martin Grigorov
Soon. A week I guess. On Fri, Jan 6, 2012 at 3:04 PM, nino martinez wael nino.martinez.w...@gmail.com wrote: Any idea on how far 1.5.4 are in the release process? 2012/1/6 Martin Grigorov mgrigo...@apache.org The problem was that Wicket doesn't produce the nice formatted error message

Re: 1.5 serialization fun

2012-01-06 Thread nino martinez wael
Great! 2012/1/6 Martin Grigorov mgrigo...@apache.org Soon. A week I guess. On Fri, Jan 6, 2012 at 3:04 PM, nino martinez wael nino.martinez.w...@gmail.com wrote: Any idea on how far 1.5.4 are in the release process? 2012/1/6 Martin Grigorov mgrigo...@apache.org The problem was that

Re: Wicket on Google App Engine

2012-01-06 Thread Rahman USTA
i did Daniel's way, but when run the application, http://chopapp.com/#1gyxqdm6 2012/1/6 Hielke Hoeve hielke.ho...@topicus.nl Hey Daniel, Glad to hear you got it working as well. I have some apps on google app engine as well. Tried all the tutorials and 'useful' maven plugins but all just

Re: Wicket on Google App Engine

2012-01-06 Thread Daniel Watrous
Rahman, From the error that you show in your link it appears that your application can't find the WicketFilter class. Are you sure that you copied the three wicket jar files (core, util, request) to your WEB-INF/lib folder? Daniel On Fri, Jan 6, 2012 at 7:28 AM, Rahman USTA

Re: Wicket on Google App Engine

2012-01-06 Thread Daniel Watrous
Hielke, I'm not very sophisticated when it comes to Maven. I think what I go through in my tutorial is more of a brute force update of my eclipse environment so that it works with the quickstart project on GAE. I'll have a look at the resources approach you mentioned. That might simplify setup of

Re: Wicket on Google App Engine

2012-01-06 Thread Rahman USTA
i handled them, but now server is giving me internal error, http://chopapp.com/#8lc105ni 2012/1/6 Daniel Watrous daniel.watr...@gmail.com Rahman, From the error that you show in your link it appears that your application can't find the WicketFilter class. Are you sure that you copied the

Re: Wicket on Google App Engine

2012-01-06 Thread Daniel Watrous
This time I think you didn't include the gae-initializer jar in your WEB-INF/lib directory. On Fri, Jan 6, 2012 at 8:50 AM, Rahman USTA rahman.usta...@gmail.com wrote: i handled them, but now server is giving me internal error, http://chopapp.com/#8lc105ni 2012/1/6 Daniel Watrous

Re: Wicket on Google App Engine

2012-01-06 Thread Daniel Watrous
You might be clever enough to do it in maven. I wasn't, so I added the jar files like I show in my tutorial. On Fri, Jan 6, 2012 at 8:55 AM, Rahman USTA rahman.usta...@gmail.com wrote: i did it in pom.xml, why must i add jars to lib manually? cant i do it with maven? 2012/1/6 Daniel Watrous

Re: Wicket on Google App Engine

2012-01-06 Thread Rahman USTA
Now, http://chopapp.com/#7pmdaqmd 2012/1/6 Rahman USTA rahman.usta...@gmail.com i did it in pom.xml, why must i add jars to lib manually? cant i do it with maven? 2012/1/6 Daniel Watrous daniel.watr...@gmail.com This time I think you didn't include the gae-initializer jar in your

Re: Wicket on Google App Engine

2012-01-06 Thread Daniel Watrous
Rahman, Are you following my tutorial or are you trying to adapt it to work some other way. I have to admit that I'm not very savvy when it comes to Maven and I like the eclipse environment well enough. The Eclipse + GAE plugin makes development easy. Maybe I should be embarrassed to say that

Re: Wicket on Google App Engine

2012-01-06 Thread Rahman USTA
Thanks a lot Daniel, it's ok now. 2012/1/6 Rahman USTA rahman.usta...@gmail.com Now, http://chopapp.com/#7pmdaqmd 2012/1/6 Rahman USTA rahman.usta...@gmail.com i did it in pom.xml, why must i add jars to lib manually? cant i do it with maven? 2012/1/6 Daniel Watrous

Re: hebrew text looks like ×׳—׳‘׳¨׳•

2012-01-06 Thread armhold
I went though this pain a few months ago too. Here are all the places I had to hit: 1. In your HTML files: ?xml version=1.0 encoding=UTF-8? And also in your head: meta http-equiv=Content-Type content=text/html; charset=UTF-8 2. For property files, if you use i18n you will need to use