Re: [Wicket-user] Adding nodes to ajax TreeTable.

2006-10-22 Thread Matej Knopp
Yeah. If you just insert the node to a parent node, the listener event is not fired. You have to use the DefaultTreeModel's methods to change tree structure if you want the events to be fired and tree to be updated. -Matej Sean C. Sullivan wrote: > Ed, > > Instead of adding the new TreeNode t

Re: [Wicket-user] problems with AjaxSubmitLink

2006-10-22 Thread Matej Knopp
Can you please provide some source code? -Matej balamaci wrote: > Hi, > I was using an AjaxSubmitLink but no method seemed to be executed,neither > the onSubmit of the link, or the form's or onError. When looking at the java > console from Firefox it says error: form has no propertyes, in the cod

Re: [Wicket-user] Nice Url

2006-10-21 Thread Matej Knopp
> > On 10/21/06, *Matej Knopp* <[EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>> > wrote: > > I'm affraid that the hidden field would not be a very good alternative. > Wicket does redirect after post, if you are using redirect to > render/buffer, whic

Re: [Wicket-user] Nice Url

2006-10-21 Thread Matej Knopp
I'm affraid that the hidden field would not be a very good alternative. Wicket does redirect after post, if you are using redirect to render/buffer, which IMHO 99,9% people do. So if you send the page id in hidden field and then refresh the page, new page instance will be created. -Matej Eelc

Re: [Wicket-user] ModalWindow's initial size (Wicket 2)

2006-10-20 Thread Matej Knopp
Hi, the initial size really only works with height, and only if the window has a panel content and is not resizable. There's no default width, nor width and height for window with page. This is a limitation of html, there's no way to support that. The idea is that if you use panel in window, yo

Re: [Wicket-user] Am I in a ModalWindow

2006-10-19 Thread Matej Knopp
If you want page to be displayed in modal window, you must create ModalWindow.PageCreator instance. The instance can set a flag on page to indicate that it's shown in modal dialog. -Matej Stefan Lindner wrote: > How can a component decide wheter it is displayed within a Modalwindow? > If I have

Re: [Wicket-user] Submit button behave differently after ajax request

2006-10-18 Thread Matej Knopp
The behavior wont work on button. Why don't you use AjaxSubmitButton instead? -Matej drakonis wrote: > Hi, i have a curious problem. > I have a form with a submit button. If i click the submit button the > onSubmit method of the button is called so is the onSubmit method of the > form. > > And

Re: [Wicket-user] IBehavior#rendered() is called twice when a component that has that behavior is rendered via AJAX.

2006-10-17 Thread Matej Knopp
ms logical to me > > -Igor > > > On 10/17/06, *Matej Knopp * <[EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>> > wrote: > > Well, as far as I can see there's only detachModels in IBehavior. Is > this the place? > > -Matej >

Re: [Wicket-user] Netscape 8.1.2 problems

2006-10-17 Thread Matej Knopp
I don't know if ff 1.0 works, but Netscape 8.1.2 does, after I fixed it :) Frank Bille wrote: > I can see that the Gecko version used is 1.7.5 which AFAIR corresponds > to FireFox 1.0 which I don't think works with our AJAX at the moment. > > Frank > > On 10/17/06, M

Re: [Wicket-user] IBehavior#rendered() is called twice when a component that has that behavior is rendered via AJAX.

2006-10-17 Thread Matej Knopp
Well, as far as I can see there's only detachModels in IBehavior. Is this the place? -Matej Igor Vaynberg wrote: > why not do the cleanup in detach() ? > > -Igor > > On 10/17/06, *Matej Knopp* <[EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>> > wrote: >

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

2006-10-17 Thread Matej Knopp
tion ;-) > > Thanks, > > Pierre-Yves > > Matej Knopp a écrit : >> Hi Pierre-Yvers, >> >> I've tested your example with IE, FF and Opera, in all browsers it >> worked well. I've tested it wicket current svn (branch 1.3). So if there >>

Re: [Wicket-user] Wicket 2.0: Adding a component via ajax that contributes javascript (like AutoCompleteTextField) doesn't work correctly in Firefox

2006-10-17 Thread Matej Knopp
It fails to execute because the header javascript is executed before the elements are inserted to DOM. The solution would be not to render the javascript to head, question is how to determine whether header is being rendered or not. -Matej Caleb Land wrote: > For some reason if the javascript

Re: [Wicket-user] IBehavior#rendered() is called twice when a component that has that behavior is rendered via AJAX.

2006-10-17 Thread Matej Knopp
Well, it seems like a bug, the question is how to fix it? The problem is that rendered() should be called after component is rendered. But we do call it even after header is rendered, because we need to do some cleanup there. So for 2.0 I think we need something like IBehavior.cleanup() - where

Re: [Wicket-user] Netscape 8.1.2 problems

2006-10-17 Thread Matej Knopp
Strange. It seems that getResponseHeader throws an exception in netscape if the requested header is not there. I added a try/catch block there so it should work now. -Matej Allen James wrote: > Has anyone run into issues using AJAX behaviour with Netscape 8.1.2 using > the Firefox rendering mo

Re: [Wicket-user] Wicket 2.0: Adding a component via ajax that contributes javascript (like AutoCompleteTextField) doesn't work correctly in Firefox

2006-10-15 Thread Matej Knopp
Well, I'll try to look at it later today (or tomorrow). The problem is that firefox executes the script "automatically", while in other browsers we need to call the scripts in the fragment manually. So I can't affect the order in which the scripts are bing called. I'll see what I can do about it

Re: [Wicket-user] Call stack size exceeded in Safari with Wicket-1.x

2006-10-14 Thread Matej Knopp
Okay, it seems that Safari has significantly lower call stack size, so we need to handle it appropriately. -Matej Caleb Land wrote: > > > On 10/14/06, *Matej Knopp* <[EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>> > wrote: > > Hi, > > can y

Re: [Wicket-user] Handling tree node onclick

2006-10-14 Thread Matej Knopp
Okay, this answer didn't really make sense :) onNodeLinkClicked is of course already in DefaultAbstractTree. -Matej Matej Knopp wrote: > Good point. I'll add the method to AbstractTree, should be there before > 1.2.3 is out. > > -Matej > > Karl M. Davis wrote: >

Re: [Wicket-user] Call stack size exceeded in Safari with Wicket-1.x

2006-10-14 Thread Matej Knopp
Hi, can you please try if the same code (with this.depth > 50) works in Firefox? It is possible that safari has smaller call stack, in which case we would need to handle it properly. Thanks. -Matej Caleb Land wrote: > I'm using Wicket-1.x from SVN and in Safari 2.0.4 when I try to replace >

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

2006-10-14 Thread Matej Knopp
e. You can then click on any tab (inner or outer) and go back > to the first tab to experiment the problem. After an Ajax call, the > datePicker still opens, but it is not possible to select a date. > > Pierre-Yves > > > Matej Knopp a écrit : >> Well, the m

Re: [Wicket-user] Handling tree node onclick

2006-10-13 Thread Matej Knopp
; From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of Matej Knopp > Sent: Thursday, October 12, 2006 7:18 AM > To: wicket-user@lists.sourceforge.net > Subject: Re: [Wicket-user] Handling tree node onclick > > I assume you are talking about the new (ajax) tree. &

Re: [Wicket-user] Handling tree node onclick

2006-10-12 Thread Matej Knopp
I assume you are talking about the new (ajax) tree. Override the method newNodeLink to create link with action you want. -Matej billa wrote: > Can someone point me to some sample code for intercepting a tree node onclick > event? I would like the tree node click to update a pane on the same page

Re: [Wicket-user] Repositioning the WICKET AJAX DEBUG link

2006-10-11 Thread Matej Knopp
I added id wicket-debug-link to the link, so it should be possible to force different style for it (using the !important modifier), e.g. div.wicket-debug-link { left: 30% !important; } Matt Brictson wrote: > On Oct 10, 2006, at 11:40 PM, Matej Knopp wrote: >> We can consider

Re: [Wicket-user] Wicket-CMS Templates

2006-10-11 Thread Matej Knopp
The part where wicket would really shine is the part of application where you manage content, etc. For the part where you show the content, I'd consider multiple approaches. You definitely need different templating engine (like freemarker), or maybe some scripting language. I'm not sure that us

Re: [Wicket-user] Repositioning the WICKET AJAX DEBUG link

2006-10-10 Thread Matej Knopp
We can consider using id for the link, it could be in 1.2.3. -Matej Matt Brictson wrote: > Hello, > > I like the functionality provided by the WICKET AJAX DEBUG link that > appears when I'm in development mode, but the link is in an > unfortunate position in my UI (it obscures some important

Re: [Wicket-user] Refresh life cycle

2006-10-10 Thread Matej Knopp
Marc-Andre Houle wrote: > It is a matter of interogation I have and not directly related to a problem. > While trying to find a good solution about the problem described there > > , I begin to try to figure what is happ

Re: [Wicket-user] Refresh life cycle

2006-10-10 Thread Matej Knopp
What does it mean "just refresh" and "completely update the page"? Your problem can that you do the loading of items in constructor. The constructor is called only once in the page lifecycle. However, the page life spans over multiple request. So even if you reload the page, you can still be dea

Re: [Wicket-user] Refreshing problem with ajax component

2006-10-10 Thread Matej Knopp
Anyway, there were couple of fixes concerning partial refresh of tree, you might consider trying a current snapshot of 1.2. -Matej Marc-Andre Houle wrote: > The click is made on an object of the ajax tree and it is an ajax call. > > Setting versionning to false work, only if it is set to the p

Re: [Wicket-user] NiceURL and PagingNavigator

2006-10-10 Thread Matej Knopp
ouldnt work for the >> users as >>> well as all search engines ! >>> >>> Ajax is also not a solution as google & co dont care about that! >>> >>> Dont you know any (even theorethical) possibility to have URLs like >>> /products/page/2 for pa

Re: [Wicket-user] NiceURL and PagingNavigator

2006-10-10 Thread Matej Knopp
his behaviour going to > change in Wicket 2 ??? or are nice URLs there a half-done-feature, too ? > > Regards > > > > >> -Ursprüngliche Nachricht- >> Von: [EMAIL PROTECTED] >> [mailto:[EMAIL PROTECTED] Im Auftrag >> von Matej Knopp >> Gesendet: Dienstag,

Re: [Wicket-user] NiceURL and PagingNavigator

2006-10-10 Thread Matej Knopp
There is a simple answer for your question: You can't. It's due to how wicket works. Since Wicket manages your application state and takes care of the urls for you, you can't alter them significantly. If you need tabbed panel like functionality while having nice urls, you have to have differen

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

2006-10-09 Thread Matej Knopp
cker also works. When I try to activate > an outer link to display another " ajax page", I get the null target > exception. So I cannot test the datepicker on the other pages. > > Pierre-Yves > > > Matej Knopp a écrit : >> This is very unfortunate. I

Re: [Wicket-user] Best way to use of packaged resources for skinning

2006-10-09 Thread Matej Knopp
mage2.giff >|_... > > theme.css is loaded in BasePage's constructor like this: > > add(HeaderContributor.forCss(new > PackageResourceReference(BasePage.class, "theme.css"))); > > Thanks! > > On Mon, 2006-10-09 at 18:03 +0200, Matej Knopp wro

Re: [Wicket-user] Best way to use of packaged resources for skinning

2006-10-09 Thread Matej Knopp
Why don't put the images next to css files and have them attached to page using css? (background-image can do lot of nice things). This way you don't have to care about image resources at all. -Matej Philip A. Chapman wrote: > Everyone, > > I have several intranet sites that I am working on.

Re: [Wicket-user] ajax request does not recreate component with changed model

2006-10-07 Thread Matej Knopp
Your problem is that you create label with constant modal, that is set to the value of currentItem.getName. So even if you change current item later, the item container is not recreated, thus the label still shows old current item name. The solution would be to create the label like this (assum

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

2006-10-05 Thread Matej Knopp
fore line 120. When loading the Ajax response that contains the > datepicker, this alert is displayed 10 times with values 0 to 9. > > Pierre-Yves > > Matej Knopp a écrit : >> That's not really the problem. The javascript _is_ included only once. >> Problem is the

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

2006-10-03 Thread Matej Knopp
: >> Hello Matej, >> >> I eventually found the updated file. (I was looking for the calendar.js >> file, and not for wicket-ajax.js). It doesn't change anything. I still >> have a "too much recursion" error at line 1796 of calendar.js >> >> Pierre-

Re: [Wicket-user] [tutorial] Wicket + Spring integration - revisited

2006-10-03 Thread Matej Knopp
But it should. I don't see reason why this wouldn't work? If I recall correctly it worked for me. -Matej Leszek Gawron wrote: > Eelco Hillenius wrote: >>> I just wanted to share another way of injecting spring services into >>> wicket code. This one uses AOP. >>> >>> - o - Why anothe

[Wicket-user] Wicket-Support.com launched

2006-10-03 Thread Matej Knopp
Dear Wicket users, we have launched a company that provides consultation, support and training for Wicket. For more information visit http://www.wicket-support.com. We are looking forward to help you with this amazing framework in any way you need. Kind regards, Matej Knopp, Wicket Support

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

2006-10-02 Thread Matej Knopp
heckout of entire project. -Matej Pierre-Yves Saumont wrote: > Hi Matej, > > I can't find anything newer than revision 7520 (udpate of the french > files) in branche 1.x and revision 7519 in trunk. > > Where did you put the updated files? > > Thanks, > >

Re: [Wicket-user] input tag and src attribute

2006-09-29 Thread Matej Knopp
I think the attribute could be prepended, why not? -Matej samyem wrote: > Any thoughts on this message? > > > > samyem wrote: >> If we have tags with wicket:id, the SRC and HREF attributes does not >> prepend context path, but it does for simple tags. Is there a reason why >> it is done this w

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

2006-09-29 Thread Matej Knopp
Hi, it should be fixed in SVN, but I can't really test it. I've simulated updating of many elements so that I could reproduce the stack overflow, but I don't know if that is your case. please try the current version and let me know. -Matej Matej Knopp wrote: > So

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

2006-09-29 Thread Matej Knopp
this.__msh_oldSetFullYear(y); >>>> }; >>>> >>>> In IE6, the error message is "not enough stack space". The same line >>>> number is reported, but the next line is highlighted: >>>> >>>> Date.prototype.__msh_oldSetFullYear =

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

2006-09-28 Thread Matej Knopp
FragmentFinder.java:76) > at wicket.Component.renderComponent(Component.java:1599) > at > wicket.ajax.AjaxRequestTarget.respondComponent(AjaxRequestTarget.java:474) > > > However, having it working with full page reload is a very good point. I > think it will be enough > > > Pi

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

2006-09-27 Thread Matej Knopp
You won't find it there. It's wicket-1.x (and trunk). 1.2.2 is release. Current branch for 1.2 is under 1.x -Matej Pierre-Yves Saumont wrote: > I can't find it in releases/wicket-1.2.2, only in trunk, but my app does > not work with 2.0 :-( > > Pierre-Yves > &g

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

2006-09-27 Thread Matej Knopp
day error! > > Pierre-Yves > > Matej Knopp a écrit : >> btw. it should be already in. >> >> Pierre-Yves Saumont wrote: >>> Hi Matej, >>> >>> Of course I will test it as soon as you commit it. BTW, there are >>> plenty of typos and spelling

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

2006-09-27 Thread Matej Knopp
esday, thursday > and there is no wednesday!). Do you want me to send you an edited file? > > Pierre-Yves > > Matej Knopp a écrit : >> Hi, >> >> I'm working on the date picker encoding problem. What I'll probably do >> is to convert all non-unico

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

2006-09-27 Thread Matej Knopp
g mistakes in the french script, and even an error > in the abreviated day names (it says monday, tuesday, tuesday, thursday > and there is no wednesday!). Do you want me to send you an edited file? > > Pierre-Yves > > Matej Knopp a écrit : >> Hi, >> >> I

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

2006-09-27 Thread Matej Knopp
Hi, I'm working on the date picker encoding problem. What I'll probably do is to convert all non-unicode (latin1, ...) date picker locale strings to utf-8 and add charset="utf-8" to the

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

2006-09-26 Thread Matej Knopp
refox. On > Ajax load, the datepicker don't work. It works through Ajax with a UTF8 > file, but it don't if the entire page is loaded. (Datepicker work, but > the encoding is wrong.) > > Pierre-Yves > > Matej Knopp a écrit : >> It also is fixed in wicket-1.x

Re: [Wicket-user] Problem Selecting Tree Nodes

2006-09-26 Thread Matej Knopp
; > import wicket.ajax.AjaxRequestTarget; > import wicket.ajax.markup.html.AjaxLink; > import wicket.examples.ajax.builtin.BasePage; > import wicket.extensions.markup.html.tree.AbstractTree; > > /** > * This is a base class for all pages with tree example. > * > * @author Matej K

Re: [Wicket-user] AjaxSubmitButton does not disable

2006-09-26 Thread Matej Knopp
I don't think it is a feature. Seems more like a bug to me. -Matej samyem wrote: > When I do setEnabled(false) on AjaxSubmitButton component, it does not > disable the button. However, it seems to work for other components like > textbox and checkboxes. Looks like a wicket problem? For now, I hav

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

2006-09-26 Thread Matej Knopp
It also is fixed in wicket-1.x -Matej Pierre-Yves Saumont wrote: > Is it fixed only in trunk or also in releases ? > > Pierre-Yves > > Matej Knopp a écrit : >> The problem was that AjaxRequestTarget called component.renderHead(), >> without calling rendered() on com

Re: [Wicket-user] Problem Selecting Tree Nodes

2006-09-26 Thread Matej Knopp
Please send a test case, I'll look at it. your code seems to be fine, it's nothing illegal, it can be bug in tree. Would you mind testing svn version first, it _might_ be already fixed. Thanks, -Matej Karl M. Davis wrote: > Matej, > > I'm getting an ArrayIndexOutOfBounds when I go to select

Re: [Wicket-user] Problem Selecting Tree Nodes

2006-09-26 Thread Matej Knopp
s or can I just send you a > class & html file? > > -- Karl > > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of Matej Knopp > Sent: Tuesday, September 26, 2006 12:33 AM > To: wicket-user@lists.sourceforge.net > Subjec

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

2006-09-25 Thread Matej Knopp
y due to the application's requirements. I've got it > working in my case for now by moving the ThreadLocal variable one step up in > AbstractBehavior and making the cleanup method in AbstractBehavior set the > ThreadLocal to null. That fixed this problem apparently, but I'l

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

2006-09-25 Thread Matej Knopp
7;s requirements. I've got it > working in my case for now by moving the ThreadLocal variable one step up in > AbstractBehavior and making the cleanup method in AbstractBehavior set the > ThreadLocal to null. That fixed this problem apparently, but I'll let you > have the fina

Re: [Wicket-user] Modal panel contribute to header

2006-09-25 Thread Matej Knopp
There has been a problem with header contribution and modal dialog. It should be already fixed. Can you please try wicket from svn? -Matej Steve Knight wrote: > Can a panel that is used in a modal window contribute to the header? > I've tried using HeaderContributor to include a javascript ref

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

2006-09-25 Thread Matej Knopp
ut a new complete fresh > version, tried mvn clean, deleted manually the target and tried again !! > > I have no problem with wicket-extensions. > > Pierre-Yves > > Matej Knopp a écrit : >> This is strange. I've tested both current 1.x and 2.0 >> >> in 1.x a

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

2006-09-25 Thread Matej Knopp
uto-complete text box is broken now with the latest code. I >>> get things like: >>> >>> Error: Wicket.Ajax has no properties >>> Source File: http://localhost:8081/mm/javascript/wicket-autocomplete.js >>> Line: 7 >>> >>> And the auto-com

Re: [Wicket-user] The problem about encoding and event in ajax

2006-09-25 Thread Matej Knopp
store garbage code like ???. By > setting page encoding to Big5, the browser will escape non-Big5 > chars to "#&;" automatically. Althought database still store > these escape chars, these chars can be re-rendered correctly on the > web

Re: [Wicket-user] The problem about encoding and event in ajax

2006-09-25 Thread Matej Knopp
5") > > I try all of combinations and only work setting is turn off all encoding > settings, let > them fall back to default "UTF-8". Yes, UTF-8 do work but the system is > old and equip > with a legacy database which is Big5 based > > I could

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

2006-09-25 Thread Matej Knopp
on from trunk, but it fails the tests (32 > failures) most failures report inversion of two html attributes, for > exemple: > > === wicket.markup.MarkupInheritanceExtension_11 === > 3c3 > < > --- > > > > Checkout reported version # 7486. > >

Re: [Wicket-user] The problem about encoding and event in ajax

2006-09-25 Thread Matej Knopp
Well, if this causes trouble, perhaps we could post the information. It is a bit more work but it would be worth it. -Matej Johan Compagner wrote: > This is not a thing wicket can do something about. > This is the URI encoding that must be set in the tomcat connector itself: > > URIEncoding="UT

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

2006-09-25 Thread Matej Knopp
t 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) >>> DatePicker in modal window panel now works, although the issue

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

2006-09-24 Thread Matej Knopp
jax. I guess this is a larger problem than the date picker. The >> same problem would occur everytime the javascript/stylesheet are added >> dynamically. >> >> >> Matej Knopp wrote: >>> Well, I was working on it. But only to the degree that I disabled th

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

2006-09-24 Thread Matej Knopp
application#init is no longer necessary. I'd appreciate if everyone who has issues with header contribution test it with current svn. The more bugs we nail down the better! :) -Matej Matej Knopp wrote: > Hi, > > It indeed is problem with modal window. Or, better said, with > AjaxRe

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

2006-09-24 Thread Matej Knopp
with this much info. > > - Samyem > > > Matej Knopp wrote: >> 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 ther

Re: [Wicket-user] Problem with tree width

2006-09-24 Thread Matej Knopp
Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of Matej Knopp > Sent: Saturday, September 23, 2006 11:43 AM > To: wicket-user@lists.sourceforge.net > Subject: Re: [Wicket-user] Problem with tree width > > Sure, and don't forget to provide css

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

2006-09-23 Thread Matej Knopp
ur everytime the javascript/stylesheet are added > dynamically. > > > Matej Knopp wrote: >> Well, I was working on it. But only to the degree that I disabled the >> disabling of check during ajax request, because it was no longer >> necessary. >> >> Unfortunate

Re: [Wicket-user] Problem with tree width

2006-09-23 Thread Matej Knopp
wrote: > time to work on that magical tr replacing ajax stuff :) > > -Igor > > > On 9/23/06, *Matej Knopp* <[EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>> > wrote: > > Btw. I've commited fix to 1.x that prevents the text from hiding (i

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 >

Re: [Wicket-user] Problem with tree width

2006-09-23 Thread Matej Knopp
your help and I'm pleased to know someone better than me is > working on that issue. I'm not really a master in CSS! > > Marc > > On 9/22/06, *Matej Knopp* <[EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>> > wrote: > > I've fixed the problem o

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

2006-09-22 Thread Matej Knopp
ve posted mail about it to the list, I'm not sure what the outcome was. -Matej Igor Vaynberg wrote: > i thought you _were_ working on the component use check and ajax target > stuff? > > -Igor > > > On 9/22/06, *Matej Knopp* < [EMAIL PROTECTED] <mailto:[EMAIL P

Re: [Wicket-user] Tree scrolling

2006-09-22 Thread Matej Knopp
I might just switch to the TreeTable. > > Steve > > On 9/21/06, * Matej Knopp* <[EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>> > wrote: > > Scrolling shouldn't be a problem. > > > > > > > Well. In 1

Re: [Wicket-user] Tree scrolling

2006-09-22 Thread Matej Knopp
y set to > overflow:auto. So it is not necessary. > > Marc > > On 9/21/06, *Matej Knopp* < [EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>> > wrote: > > One more thing. Instead overflow:scroll it would be better to have > overflow:auto. > > -Matej >

Re: [Wicket-user] Problem with tree width

2006-09-22 Thread Matej Knopp
I've fixed the problem of disappearing item captions, but only for tree-table. I'll have to look at tree css, I just had no time. It might some serious changes to stylesheet to get this working for Tree. So if this really is a showstopper for you, try to use tree table (with the css from curren

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

2006-09-22 Thread Matej Knopp
I don't think so. I was working on header contribution and problem with debug console calling document.write() (thus removing all head elements from DOM). This is something completely different, it's related to the component rendered check. That's not my domain. I believe the problem are compo

Re: [Wicket-user] Tree scrolling

2006-09-21 Thread Matej Knopp
One more thing. Instead overflow:scroll it would be better to have overflow:auto. -Matej Matej Knopp wrote: > Scrolling shouldn't be a problem. > > > > > > > Well. In 1.2.2 there was a problem with internet explorer in standard > compliance mode,

Re: [Wicket-user] Tree scrolling

2006-09-21 Thread Matej Knopp
Scrolling shouldn't be a problem. Well. In 1.2.2 there was a problem with internet explorer in standard compliance mode, images were staying even if tree scrolled. In current svn this is fixed. Can you please try current 1.x from svn? -Matej Steve Knight wrote: > Ok, I just noticed th

Re: [Wicket-user] DatePicker broken in IE6

2006-09-20 Thread Matej Knopp
Can you provide a test case? Or quick start project? I haven't encountered this behavior. I'd like to look at it but I'd need to reproduce it. -Matej Pierre-Yves Saumont wrote: > It appears that under some conditions, the script associated with the > date picker in the HTML is not executed whe

Re: [Wicket-user] Wicket 2, modal window, ListChoice, auto completion

2006-09-18 Thread Matej Knopp
Selects should be working with latest svn. Don't forget to clear IE's cache, it tends to help. -Matej Stefan Lindner wrote: >> tag had a problem in Model Dialogs in IE. But it should have > been >> solved by now. Try to do a svn update to get the latest model window > code. > > I did a svn upd

Re: [Wicket-user] FW: ModalWindow problems in IE 6

2006-09-17 Thread Matej Knopp
It could be the old javascript still in browser cache. IE is rather reluctant to evict some old files from the cache. -Matej Allen James wrote: > It is working now, but I cannot tell you why. I deleted all my offline > cached content and cookies, and once that was done, everything works as >

Re: [Wicket-user] Wicket 2, modal window, ListChoice, auto completion

2006-09-17 Thread Matej Knopp
ListChoice should be visible in modal window from current svn. I can imagine autocomplete not working, perhaps the autocomplete div has lower z-index. Anyway, if you need autocomplete/datepicker/other javascript components that have absolute positioning, you may need to use the modal window in "

Re: [Wicket-user] ModalWindow problems in IE 6

2006-09-17 Thread Matej Knopp
This is really weird. Can you please either check if current svn version helps the problem or provide a quick start application so that I can look at that? From what I can see the response seems to be ok. -Matej Allen James wrote: > I've ran into a scenario where I can use the ModalWindow in

Re: [Wicket-user] Wicket 2.0: Form within a modal Window

2006-09-16 Thread Matej Knopp
The fix of disabling tabs for elements inside the window is in svn. So the situation is that with current svn it should be possible to use forms even in modal dialog with panel (not page), you just have to remember always to submit the form using ajax (not regular submit). -Matej Matej Knopp

Re: [Wicket-user] Wicket 2.0: Form within a modal Window

2006-09-15 Thread Matej Knopp
It depends whether you want to use component in a dialog or a separate page. When using separate page (iframe) everything should work ok. When using component, things are bit more complicated: Non-working tab could be fixed I think, I'll have to look at that. Also there was recently a bug fixed

Re: [Wicket-user] DatePicker problem - java script stack overflow error

2006-09-15 Thread Matej Knopp
The fix should be in SVN. But there is a bug in 1.2 now that prevents rendering datepicker in ajax response, so I wouldn't recommend updating right now. In the meanwhile you can try to disable ajax debug, it should help. ( getAjaxSettings().setAjaxDebugModeEnabled(false) ). -Matej Iuly wrote:

Re: [Wicket-user] Modal Window

2006-09-15 Thread Matej Knopp
using distinct cookie name per modal > window instance would solve the problem in general. > > > Matej Knopp wrote: >> Modal window width and height is stored in a cookie. First time initial >> width and height is used, and after that the width and height from the >&

Re: [Wicket-user] Matej's Tree Overflow problems

2006-09-15 Thread Matej Knopp
In SVN there is update of css. The text no longer disappears when it's too wide. It's just clipped. -Matej Matej Knopp wrote: > This is a known problem. Unfortunately, the tree column can't > automatically adjust the width according to the content. It's a > limi

Re: [Wicket-user] Date Picker in Modal Window

2006-09-15 Thread Matej Knopp
Dunno. It's web. What I'd do is that I'd let datepicker be and change the modal window content to page instead of panel. There are also other poblems with panel (hiding inputs in explorer), so for now I'd stick with page. -Matej Eelco Hillenius wrote: > On 9/13/06, Igor Vaynberg <[EMAIL PROTEC

Re: [Wicket-user] Modal Window

2006-09-14 Thread Matej Knopp
distinct cookie name per modal > window instance would solve the problem in general. > > > Matej Knopp wrote: >> Modal window width and height is stored in a cookie. First time initial >> width and height is used, and after that the width and height from the >> coo

Re: [Wicket-user] Modal Window

2006-09-14 Thread Matej Knopp
Modal window width and height is stored in a cookie. First time initial width and height is used, and after that the width and height from the cookie is used. What you need to do is set different cookie id for different modal windows. Or disable cookies at all (setCookieId(null)). -Matej samy

Re: [Wicket-user] Ajax request 'hangs' on Safari - problem found (Wicket 2.0)

2006-09-13 Thread Matej Knopp
Wow. Now that's a stupid safari bug. Please fill a bug, I'll look at it as soon as I can. Thanks for finding it. -Matej Adam Smyczek wrote: > Problem found, it looks like safari aborts execution when > getElementsByTagName > is called on a text node (in contrast calling e.g. 'childNodes' works

Re: [Wicket-user] How to detect page switch

2006-09-12 Thread Matej Knopp
Putting large objects into session is ok, as long as you a) have enough memory and can afford it b) don't replicate the session (clustering). -Matej Pierre-Yves Saumont wrote: > I already tried this method, but it is called just before the user can > see the page. What I need is to do something

Re: [Wicket-user] How to fire an onClick event programmatically ? (works in Firefox, not in IE6)

2006-09-11 Thread Matej Knopp
: > If you mean placing function() { } in the Ajax > response, it does not work in IE6 but it works in Firefox. (With Wicket > 1.2.2) > > Pierre-Yves > > Matej Knopp a écrit : >> Ajax Header contribution is already working in 1.2.2. Scripts in ajax >> response (f

Re: [Wicket-user] How to fire an onClick event programmatically ? (works in Firefox, not in IE6)

2006-09-11 Thread Matej Knopp
for 1.3 > because of api breaks? > > -Igor > > > On 9/11/06, *Matej Knopp* < [EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>> > wrote: > > Ajax Header contribution is already working in 1.2.2. Scripts in ajax > response (function() { } should wo

Re: [Wicket-user] How to fire an onClick event programmatically ? (works in Firefox, not in IE6)

2006-09-11 Thread Matej Knopp
Ajax Header contribution is already working in 1.2.2. Scripts in ajax response (function() { } should work as well. If it doesn't work then there might be a problem with ajax header contribution? -Matej Igor Vaynberg wrote: > this is a browser issue more then anything. it is prety difficult to

Re: [Wicket-user] CSS problems with DataTable in an AjaxTabbedPanel

2006-09-10 Thread Matej Knopp
Sorry, never mind. Wrong mail :) -Matej Matej Knopp wrote: > Per Ejeklint wrote: >> I'm using 1.2-SNAPSHOT and the problem persists. No big deal, now that I >> have a workaround. :) > What kind of workaround if I may ask? > > -Matej >> /Per >> &

Re: [Wicket-user] CSS problems with DataTable in an AjaxTabbedPanel

2006-09-10 Thread Matej Knopp
read about a little bit. Haven't >> really looked into it. Give me until tuesday then >> >> Frank >> >> >> On 9/10/06, *Matej Knopp * <[EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>> >> wrote: >> >> Heh, I'm

Re: [Wicket-user] CSS problems with DataTable in an AjaxTabbedPanel

2006-09-10 Thread Matej Knopp
Heh, I'm not even sure, but I guess not. I'm way too busy lately :( Maybe frankbille could have a look at that? -Matej Igor Vaynberg wrote: > did you fix it already in wicket-1.x? > > -Igor > > > On 9/10/06, *Matej Knopp* <[EMAIL PROTECTED] <mailto:[EMAIL P

<    1   2   3   4   5   6   7   8   >