Re: [Wicket-user] Problem with tree width

2006-09-24 Thread Karl M. Davis
Matej, Instead of using floats and background images, would it be possible for the tree to use real img/ tags with a set width? I'm not 100% positive, but I think the floats are what prevent overflow: scroll from working properly. Does that sound right? -- Karl -Original Message- From:

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

2006-09-24 Thread Pierre-Yves Saumont
And in some conditions (see my other post with a quickstart example), the setup script is not even executed !! Pierre-Yves samyem a écrit : 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

Re: [Wicket-user] Problem with tree width

2006-09-24 Thread Matej Knopp
Indeed, floats are the problem. Unfortunately, I'm not sure images are better solution. The problem is that for line and junction images spans are used with background-image set. The advantage is that the image can be repeated (line) and it also can be centered vertically (junction). Possible

[Wicket-user] Is there anything like session settings

2006-09-24 Thread [EMAIL PROTECTED] Imam
Hi,I have bumped into a problem where i need to be able to configurethe settings we configure in the Application settings depending on the session.I know that modifying via getApplication().getSettings()... will cause the change to reflect at all the other sessions also. I want to change for only

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

2006-09-24 Thread Matej Knopp
Hi, It indeed is problem with modal window. Or, better said, with AjaxRequestTarget. I've tried to put date picker to modal window, and it didn't work. The reason is that component is not attached when rendering it's header contribution from AjaxRequestTarget. I've tried to refactor

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

2006-09-24 Thread Matej Knopp
The fix is in svn. (both 1.x and 2.0) DatePicker in modal window panel now works, although the issue with z-index still remains. As a side effect this also fixes the component use check for components that render into head, so calling getDebugSettings().setComponentUseCheck(false) in

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

2006-09-24 Thread Matej Knopp
I've tested your quick start example with current svn and I worked as it should. Tested with FF1.5, IE6 and opera 9. Can you please test your project with current svn, if the problem persists? -Matej Pierre-Yves Saumont wrote: And in some conditions (see my other post with a quickstart

Re: [Wicket-user] If the wicket examples' library can put into a TabbedPanel

2006-09-24 Thread deafwolf
Thank you for your advice, I understand your means. As you wirte, it need some special code, so it looks a little complex, but if the helper class has been created, it will become more easier. I can't find the method getContentPanel() from whole wicket1.2's source code, so I dicide to let the

Re: [Wicket-user] Is there anything like session settings

2006-09-24 Thread Johan Compagner
that is not possible.We did (or maybe still do) also need such a thing with the check for rendering in ajax mode.But i though matej did work around that.johanOn 9/24/06, [EMAIL PROTECTED] Imam [EMAIL PROTECTED] wrote: Hi,I have bumped into a problem where i need to be able to configurethe

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

2006-09-24 Thread samyem
Thanks. I've fixed the z-index problem in my app by manually resetting the z-index in my HTML, thus overriding the default values set by the components. So hopefully now everything will run smoothly. Thanks for the fix again, Samyem Matej Knopp wrote: The fix is in svn. (both 1.x and 2.0)

Re: [Wicket-user] If the wicket examples' library can put into a TabbedPanel

2006-09-24 Thread Igor Vaynberg
On 9/24/06, deafwolf [EMAIL PROTECTED] wrote: I can't find the method getContentPanel() from whole wicket1.2's source code,this is the method you would implement in your base page that would return the content panel that needs to be swapped from request to request. so I dicide to let the page hold

[Wicket-user] Datatable/displaying,editing,adding,deleting

2006-09-24 Thread Nino Wael
Hi Whats the bedst component for showing a database table and doing mantainance. Idea is to be able to delete, add, update the table from the component. I've been looking at the repeater component, but im not sure if there is any thing that already has the exact functionallity. regards

Re: [Wicket-user] Datatable/displaying,editing,adding,deleting

2006-09-24 Thread Igor Vaynberg
there is nothing because its trivial to buildjust a datatable and a column whose markup comes from a fragment that has add/edit/delete/whatever links.-IgorOn 9/24/06, Nino Wael [EMAIL PROTECTED] wrote: HiWhats the bedst component for showing a database table and doing mantainance. Idea is to be