Re: [Wicket-user] Bug in PopupSettings?

2006-09-23 Thread Eelco Hillenius
I created a bug report for this: http://sourceforge.net/tracker/index.php?func=detail&aid=1564287&group_id=119783&atid=684975 Eelco On 9/23/06, De Soca <[EMAIL PROTECTED]> wrote: > Hello, > > there appears to be a bug in PopupSettings when rendering in IE. > > Under normal circumstances it works

Re: [Wicket-user] ajax refresh on date picker

2006-09-23 Thread samyem
Well it might actually be just a problem with this component. In my case, all I have is a date picker in a modal window which is shown as a result of clicking on a link. This produced the shown error and the modal window fail to display. I am sure you can replicate this condition with the current

Re: [Wicket-user] ajax refresh on date picker

2006-09-23 Thread Matej Knopp
I don'y really understand why. I was able to reproduce the problem with the files attached to bug report. And after I fixed the debug console, the problems were no longer there (though there was other problem - component not rendered except - for which it is necessary to disable component rende

Re: [Wicket-user] ajax refresh on date picker

2006-09-23 Thread Eelco Hillenius
Dynamic addition of javascript and css through header contributions does work for most cases. I'm using it on a daily basis, and never have problems with it. I'm afraid we ran into a corner case here. Eelco On 9/23/06, samyem <[EMAIL PROTECTED]> wrote: > > The header contribution logic seems to

Re: [Wicket-user] Problem with tree width

2006-09-23 Thread Matej Knopp
Sure, and don't forget to provide css to table layout the tree with lines and everything that is at least as good as current solution (which is actually rather good, I think ;-). Because all my attempts to layout the tree-table with table failed at least in firefox. -Matej Igor Vaynberg wrote:

[Wicket-user] Highlight row in DataTable

2006-09-23 Thread Decebal Suiu
I have a link in a table column (MyColumn) and I want to highlight the entire row when I press the link. The functionality that I try to obtain is the same with example from http://www.wicket-library.com/wicket-examples/repeater?wicket:bookmarkablePage=:wicket.examples.repeater.OIRPage but with Dat

Re: [Wicket-user] ajax refresh on date picker

2006-09-23 Thread samyem
The header contribution logic seems to be still flawed. The javascript references were not added to the HTML's HEAD at all when the component is added by ajax. I guess this is a larger problem than the date picker. The same problem would occur everytime the javascript/stylesheet are added dynamica

Re: [Wicket-user] Problem with tree width

2006-09-23 Thread Igor Vaynberg
time to work on that magical tr replacing ajax stuff :)-IgorOn 9/23/06, Matej Knopp <[EMAIL PROTECTED]> wrote: Btw. I've commited fix to 1.x that prevents the text from hiding (it'sbeing clipped instead). -MatejMatej Knopp wrote:> If it was only tree, I'd be probably using nested divs. The reason f

Re: [Wicket-user] Problem with tree width

2006-09-23 Thread Matej Knopp
Btw. I've commited fix to 1.x that prevents the text from hiding (it's being clipped instead). -Matej Matej Knopp wrote: > If it was only tree, I'd be probably using nested divs. The reason for > using div per row is actually the TreeTable. Initially, I wanted to > build tree table using ... -

Re: [Wicket-user] Problem with tree width

2006-09-23 Thread Matej Knopp
If it was only tree, I'd be probably using nested divs. The reason for using div per row is actually the TreeTable. Initially, I wanted to build tree table using ... - I couldn't nest table rows. Then I found out that replacing tr in ajax doesn't work in ie (and opera), so I had to use divs ins

[Wicket-user] Revisiting 'How to write model for immutable compound value object?'

2006-09-23 Thread Joni Freeman
Some months ago there were discussion about how to use immutable value objects in wicket. See: http://thread.gmane.org/gmane.comp.java.wicket.user/12887/focus=12887 The conclusion was that wicket does not support well such a case currently (http://article.gmane.org/gmane.comp.java.wicket.user/1291

[Wicket-user] Bug in PopupSettings?

2006-09-23 Thread De Soca
Hello, there appears to be a bug in PopupSettings when rendering in IE. Under normal circumstances it works fine, however if you set the Window name like: popupSettings.setWindowName("Anything!!!"); Then you will find that the window no longer pops up, instead it just navigate

Re: [Wicket-user] Problem with tree width

2006-09-23 Thread Eelco Hillenius
When I created that very first tree component for Wicket, I started out with nested lists. Not only was it a pain to get the CSS right, but also, I could not find a way to separate node links (selecting a note) from junction links (folding and unfolding without selecting). Eelco On 9/22/06, Karl