Re: filtering a datatable

2010-01-17 Thread orkun ozen
julien Graglia wrote: Le mercredi 15 avril 2009 à 20:02 +0300, Serkan Camurcuoglu a écrit : sorry for my previous post.. what i've previously done is: - add a filtertoolbar to your datatable - make some of your columns IFilteredColumn, for example I've used TextFilteredPropertyColumn

Re: PageLink deprecated

2010-01-17 Thread Jeroen Steenbeeke
Jeremy, That does not explain why the whole class is deprecated. Getting rid of the constructor you linked to is a good thing, but why get rid of the whole class when using an IPageLink is really just an indirection to overriding onClick (with the added benefit of being able to use the page

Re: Newbie Questions

2010-01-17 Thread nino martinez wael
Hi Peter Theres should be something in regards to a calendar here: http://mail-archives.apache.org/mod_mbox/wicket-users/200710.mbox/%3c47021d97.6010...@jayway.dk%3e Im not sure what state it are in now, I used it for week view, with filled days a special colour and clickable. regards Nino

Re: Wicket Wizards and Hibernate

2010-01-17 Thread nino martinez wael
I posted something about a shadowmodel.. In the end I did this : ModelEvent eventModel = new ModelEvent( (Event) SerializationHelper.clone((Event) model

Re: [BUG] RequestUtils.toAbsolutePath() for ajax requests

2010-01-17 Thread Alex Objelean
I've noticed that this issue is still present in 1.4.5. There is also a jira issue which wasn't assigned yet: http://issues.apache.org/jira/browse/WICKET-2312 and it has a patch attached also. Is there any chance for this bug being fixed in 1.4.6? Thanks! Alex Objelean Alexandru Objelean

WicketExtensions DataTable : Creating a Links using Model value?

2010-01-17 Thread Ashika Umanga Umagiliya
Greetings, I was going through WicketExtensions DataTable source and I was wondering how to create a hyperlink using PropertyColumn. In docs it says: columns[0] = new PropertyColumn(new Model(Family Id), familyId); What I want to do is, 1) create a Link using the field value familyId,and

Re: WicketExtensions DataTable : Creating a Links using Model value?

2010-01-17 Thread Eyal Golan
You can either override PropertyColumn's populateItem method, and add to the cell the link you want. Or you can use AbstractColumn. Eyal Golan egola...@gmail.com Visit: http://jvdrums.sourceforge.net/ LinkedIn: http://www.linkedin.com/in/egolan74 P Save a tree. Please don't print this e-mail

Re: PageLink deprecated

2010-01-17 Thread Jeroen Steenbeeke
Guys, no need to keep explaining what's wrong with passing a Page in the constructor, we understand that! Forget about that filthy 3rd constructor, I know it's wrong and I never used it anyway. That wasn't what my question was about. There are two more constructors: PageLink(String, Class)

Ajax unable to perform markup update

2010-01-17 Thread Martin Asenov
Hello, everyone! Although I've managed to handle such errors so far, I am unable to deal with this one... I've got an abstract class MyFormPanel that extends Panel and calls super(form_panel); Because I've got different form panels, i.e. ContactFormPanel, GroupFormPanel, etc. I'm trying to

Re: Ajax unable to perform markup update

2010-01-17 Thread Martin Makundi
Hi! If the markupid number changes then ofcourse.. you should maybe call : newPanel.setMarkupid(oldPanel.getMarkupId()); when ajax updating ** Martin 2010/1/18 Martin Asenov mase...@velti.com: Hello, everyone! Although I've managed to handle such errors so far, I am unable to deal with this