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! wrote: > Hi, > I'm currently extending the DataTable and used classes to support some m

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: http://apache-wicket.1842946.n4.nabble.com/Num

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: http://apache-wicket.1842946.n4.nabble.com/Custom-CSS-Class-for-Or

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! 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 a shelter ;) > --

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 request-pa

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 fol

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 HisOrderByLink.CssModifier(th

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 = com.netdesign.wallboa

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 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 ERROR ["http-bio-8080"

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 > 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 > wrote: > > Hi Guys > > > > we are having an is

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 wrote: > We are running 1.5.3 .. So i

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 > 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

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 wrote: > Any idea on how far 1.5.4 are in the release process? > > 2012/1/6 Martin Grigorov > >> The problem was that Wicket doesn't produce the nice formatted error >> message pointing to the component which holds a refere

Re: 1.5 serialization "fun"

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

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 > 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

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 wrote: > i did Dan

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 > 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 fil

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 wrote: > i handled them, but now server is giving me internal error, > http://chopapp.com/#8lc105ni > > 2012/1/6 Daniel Watrous > >> Rahman, >> >> From the erro

Re: Wicket on Google App Engine

2012-01-06 Thread Rahman USTA
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 > 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 > wrote: > > i handled them, but now server

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 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 > >> This time I thin

Re: Wicket on Google App Engine

2012-01-06 Thread Rahman USTA
Now, http://chopapp.com/#7pmdaqmd 2012/1/6 Rahman USTA > 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 > >> This time I think you didn't include the gae-initializer jar in your >> WEB-INF/lib directory. >> >> On Fri, Jan 6, 20

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 it

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 > Now, http://chopapp.com/#7pmdaqmd > > > 2012/1/6 Rahman USTA > >> 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 >> >>> This time I think you didn't include the gae-

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

2012-01-06 Thread naorye
I added the to all html files but I till get ׳—׳‘׳¨... any idea? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/hebrew-text-looks-like-tp4260875p4270078.html Sent from the Users forum mailing list archive at Nabble.com. -

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

2012-01-06 Thread Christian Huber
Are you sure the file itself is saved as UTF-8 on the file system? The Sanity Resort Am 06.01.2012 18:07, schrieb naorye: I added the to all html files but I till get ׳—׳‘׳¨... any idea? -- View this message in context: http://apache-wicket.1842946.n4.nab

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: And also in your : 2. For property files, if you use i18n you will need to use the foo.xml format rather than foo.properties, and also include the above in each of them. 3. I