Re: [Wicket-user] Header contributions and AjaxLink

2007-05-03 Thread Matej Knopp
I can look into it if you provide a quick start. -Matej On 5/3/07, Igor Vaynberg [EMAIL PROTECTED] wrote: please create a jira issue. -igor On 5/3/07, John Krasnay [EMAIL PROTECTED] wrote: I think I may have found a bug with header contributions, AjaxLink, and Internet Explorer.

Re: [Wicket-user] Ajax Request problem with new window tabs (Wicket 1.3 snapshot)

2007-05-01 Thread Matej Knopp
Hi, This was recently fixed. Can you please try getting wicket from svn to see if it help your problem? -Matej On 5/1/07, RedFury [EMAIL PROTECTED] wrote: Hi fellow wicket-ers. I am attempting to write a small wicket app which can use multiple windows. The app updates a simple component

Re: [Wicket-user] Way to prevent page versioning for a request in 1.3?

2007-04-30 Thread Matej Knopp
, Jamie Matej Knopp-2 wrote: This is wrong. Even if page version increments, the ajax links should be valid. There was a bug in wicket 1.3 where the wicket still allowed you to do unversioned ajax requests, but that's should be gone already. Can you please test it with most recent 1.3

Re: [Wicket-user] Different JS 'this' object using ajax

2007-04-30 Thread Matej Knopp
Safest solution is to do item.setOutputMarkupId(true);; and then target.appendJavascript(selectRow(document.getElementById('+item.getMarkuipId()+')); -Matej On 4/29/07, Tauren Mills [EMAIL PROTECTED] wrote: Hi, It appears that the javascript this object is different when I hardcode the

Re: [Wicket-user] Nested Forms and onSubmit()?

2007-04-30 Thread Matej Knopp
hi, i just want to mentioned that there were a nasty bug in 1.3 nested form processing that was fixed today, so if you have any issues with it i suggest you upgrading wicket to see if it helps. -Matej On 4/30/07, Martijn Dashorst [EMAIL PROTECTED] wrote: As for your first question, I think the

Re: [Wicket-user] Way to prevent page versioning for a request in 1.3?

2007-04-29 Thread Matej Knopp
This is wrong. Even if page version increments, the ajax links should be valid. There was a bug in wicket 1.3 where the wicket still allowed you to do unversioned ajax requests, but that's should be gone already. Can you please test it with most recent 1.3? -Matej On 4/27/07, jamieballing [EMAIL

Re: [Wicket-user] Is it possible to prevent page expired?

2007-04-25 Thread Matej Knopp
This is strange. It seems that your session is being invalidated when you save .java or .html file. This is not normal. I don't know what kind of magic maven jetty plugin does, i usually run my web apps with embedded jetty as regular Java application, though I'm not sure that this is what causes

Re: [Wicket-user] SLF4J and wicket

2007-04-25 Thread Matej Knopp
Why would you want to serializable a log?! -Matej On 4/25/07, Bjön Limell [EMAIL PROTECTED] wrote: Hi. Anyone had success with slf4j and wicket pages? Im getting serializeable exceptions with jcl104-over-slf4j-1.3.1.jar: org.apache.wicket.util.io.WicketSerializeableException: No

Re: [Wicket-user] SLF4J and wicket

2007-04-25 Thread Matej Knopp
Yeah, if it really should be a member variable (which makes sense when logger is not thread safe), it probably could be something like this: private transient Logger logger; private Logger getLogger() { if (logger == null) initializeLogger; return logger; } On 4/26/07, Eelco Hillenius [EMAIL

Re: [Wicket-user] What's the easiest way to do a pageable/sortable list screen?

2007-04-24 Thread Matej Knopp
Hi, the code for sortable pageable list can look like this: public class SortingPage extends BasePage { public SortingPage() { SortableContactDataProvider dp = new SortableContactDataProvider(); final DataView dataView = new DataView(sorting, dp)

Re: [Wicket-user] What features do want to show in wicket demo

2007-04-22 Thread Matej Knopp
Because it lacks criteria queries? :) -Matej On 4/22/07, Igor Vaynberg [EMAIL PROTECTED] wrote: why not use JPA? then you can back that by hibernate/toplink/whatever -igor On 4/22/07, Zhang Hailong [EMAIL PROTECTED] wrote: I think a blog project which covers most common requirements

Re: [Wicket-user] Giving Wicket a try; a few questions

2007-04-22 Thread Matej Knopp
Hi On 4/22/07, Matthias Karlsson [EMAIL PROTECTED] wrote: Hi, I'm about to develop a new e-commerce site and having grown tired of other frameworks I have tried, Wicket seems to bring forward a lot that I have been missing and wanting to use. However, I have never used a component-based

Re: [Wicket-user] Tree persistence problem

2007-04-19 Thread Matej Knopp
Is there a page inside modal window? Just keep the page reference between showing the window, don't creae new page instance every time (inside the PageCreator). -Matej On 4/19/07, Renan Camponez [EMAIL PROTECTED] wrote: Hi all, Here is my problem: I have a Ajax Link who shows a ModalWindow

Re: [Wicket-user] Tree persistence problem

2007-04-19 Thread Matej Knopp
: modal.show(evt.getAjaxRequestTarget()); The part of the code when the Tree is instantiated: tree = new Tree(tree, createTreeModel()); Any idea? Thanks On 4/19/07, Matej Knopp [EMAIL PROTECTED] wrote: Is there a page inside modal window? Just keep the page reference between showing

Re: [Wicket-user] wicket performance

2007-04-18 Thread Matej Knopp
Maybe one of them was ironic. -Matej On 4/18/07, Alexey Maksimov [EMAIL PROTECTED] wrote: On Tue, 17 Apr 2007 14:29:09 -0700 Igor Vaynberg [EMAIL PROTECTED] wrote: Where can I get details of those benchmarks? see here

Re: [Wicket-user] Foldable panels

2007-04-18 Thread Matej Knopp
Hi, this looks like something borders are for. -Matej On 4/18/07, Stefan Kanev [EMAIL PROTECTED] wrote: Hello. I'm trying to achieve the following effect using Wicket 1.3. I want to have a component (let's dub it widget), that draws a thin border around its contents and makes it possible to

Re: [Wicket-user] Is Wicket Scalability Issue all about More memory?

2007-04-18 Thread Matej Knopp
First, the 16000 sessions for a server is a highly theoretical. I can't imagine single machine that would be able to handle 16000 concurrent request (while of course doing some meaningfull processing, like updating database...) With Wicket 1.3, stating that memory is the scalability blocker is

Re: [Wicket-user] wicket performance

2007-04-17 Thread Matej Knopp
Well, has it occurred to you that hello world might not be the best test-case for a benchmark? -Matej On 4/17/07, Alexey Maksimov [EMAIL PROTECTED] wrote: Hi folks. I found a comment by Jonathan Locke claiming that Wicket is 17.4% faster than tapestry. From my local tests on simple 'hello

Re: [Wicket-user] wicket performance

2007-04-17 Thread Matej Knopp
There are multiple solution for this. Either dynamically change visibility of the components, or add WebMarkupContainer instead of the component as placeholder. Or use some kind of repeater (ListView, RepeatingView, ...). Also you can group the components to a panel and then just switch panels,

Re: [Wicket-user] Wicket manager resources inside Javascript and Css files

2007-04-16 Thread Matej Knopp
If you the css is a packagedresource, you don't need to do anything special. Just use relative url for the image and have the image in same folder than css. - This SF.net email is sponsored by DB2 Express Download DB2 Express

Re: [Wicket-user] Wicket manager resources inside Javascript and Css files

2007-04-16 Thread Matej Knopp
What do you mean in javascript file, can you make an example? -Matej On 4/16/07, Paolo Di Tommaso [EMAIL PROTECTED] wrote: Really .. I didn't know that. Great! But how to do with resource path in javascript file ? Thanks, Paolo On 4/16/07, Matej Knopp [EMAIL PROTECTED] wrote

Re: [Wicket-user] ModalWindow, Forms, and Updating underlying Panels

2007-04-15 Thread Matej Knopp
Hi, To refresh the dataview, you need to register a windowsclosedcallback on your modal window. final WebMarkupContainer dataTableHolder = new WebMarkupContainer(dataTableHolder); dataTableHolder.setOutputMarkupId(true); add(dataTableHolder); dataTableHolder.add(dataTable);

Re: [Wicket-user] treetable with table markup

2007-04-13 Thread Matej Knopp
Hi, it's is fixed in latest 1.x branch. Can you check if it works for you? -Matej On 4/13/07, Andrew Klochkov [EMAIL PROTECTED] wrote: Matej Knopp wrote: Second question, I assume you want to show inserted rows without refreshing the entire listview? Well, this is possible to certain

Re: [Wicket-user] ajax / javascript widgets in wicket

2007-04-13 Thread Matej Knopp
prependJavascript(whatever) ? in onSomething(AjaxRequestTarget target) method of say AjaxLink? why? isn't is a function of a component itself to render itself? Alex On 4/13/07, Matej Knopp [EMAIL PROTECTED] wrote: First you should realize that wicket is not about javascript components. Wicket is about

Re: [Wicket-user] mount page url

2007-04-11 Thread Matej Knopp
getRequestCycle().setResponsePage(SignUp.class); -Matej On 4/11/07, tbt [EMAIL PROTECTED] wrote: Hi, I need to mount a page url because we need to use a static url to hook it up with google analytics. I tried adding the following code in the applications init() method.

Re: [Wicket-user] treetable with table markup

2007-04-11 Thread Matej Knopp
Hi, I'm not sure it is possible to change the markup of current treetable without actually copying the classes and the markup. However, it is on my todo list to change the markup from spans and divs to table. But it's not a high priority one I'm affraid. So If you want to do it on your own, I

Re: [Wicket-user] treetable with table markup

2007-04-11 Thread Matej Knopp
: Matej Knopp wrote: Second question, I assume you want to show inserted rows without refreshing the entire listview? Well, this is possible to certain degree, but requres some javacsript foo. You need to create the DOM element with appropriate id (in javascript) before adding the newly

Re: [Wicket-user] TopToolbar in datatable dispeared when ajax modal window closed

2007-04-09 Thread Matej Knopp
Yes, this is a known issue with refreshing dataview with toolbars using ajax. The problem is that toolbars use non-invalid markup which works fine with regular requests, but doesn't work using ajax. -Matej On 4/9/07, tooy li(Gmail) [EMAIL PROTECTED] wrote: hi i used a defaultdatatable to show

Re: [Wicket-user] Duplicate wicket:head contributed entries with multiple panels on a page

2007-04-09 Thread Matej Knopp
We already do parse content of head, but only to filter hader contribution contributed by ajax (in javascript). -Matej On 4/9/07, Igor Vaynberg [EMAIL PROTECTED] wrote: we are talking about two different panel classes contributing the same link, that means we need to break the head down into

Re: [Wicket-user] Form macro-component

2007-04-09 Thread Matej Knopp
When nested form is submitted, the form components in surrounding models are given the user input, but they are not processed. So the input is persisted during request, but not validated and processed. The inner (nested) form, that is submitted is both validated and if validation succeeds, the

Re: [Wicket-user] No Page found for component after selecting TreeNode

2007-04-08 Thread Matej Knopp
When tree node is selected the appropriate part of tree is rebuilt, which also involves recreating the components. So the component on which you're calling getPage() is no longer in hierarchy, thus the page returned is null. -Matej On 4/8/07, Isaac Weng [EMAIL PROTECTED] wrote: Hi,

Re: [Wicket-user] onSelectionChanged and session-in-view

2007-04-06 Thread Matej Knopp
It's not a good idea to use LoadableDetachableModel for entities that you edit. Because they are detached after every request. LoadableDetachableModel is best for View scenarios, when you need fresh data on every request. In case you are editing entities, like you do, load the entity only once,

Re: [Wicket-user] JavaScript Hijacking

2007-04-06 Thread Matej Knopp
Hi Wicket applications shouldn't be affected by javascript hijacking. To be able to use this kind of hijacking, ajax response has to be directly executable javascript. Wicket's Ajax response is a xml file, which can not be directly evaluated, thus loading it from remote site using the script tag

Re: [Wicket-user] replace of multi inc. spans

2007-04-05 Thread Matej Knopp
You can't just replace the listView by a label, because the markup won't match. Safest solution probably not to replace the listView, just ide it and show the label next to lisview. On 4/5/07, Korbinian Bachl [EMAIL PROTECTED] wrote: Hi, maybe its a noobish question, but how can i replace a

Re: [Wicket-user] replace of multi inc. spans

2007-04-05 Thread Matej Knopp
and a label (mobile thing) Regards -Ursprüngliche Nachricht- Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Im Auftrag von Matej Knopp Gesendet: Donnerstag, 5. April 2007 13:22 An: wicket-user@lists.sourceforge.net Betreff: Re: [Wicket-user] replace of multi inc. spans

Re: [Wicket-user] Framework Evaluation

2007-04-05 Thread Matej Knopp
Right, it should, but if you are not using sticky sessions, the path where serialized pages are stored must be accessible from all nodes. -Matej On 4/5/07, Eelco Hillenius [EMAIL PROTECTED] wrote: I would love nothing more than to have Wicket as the de facto where I work. Unfortunately, the

Re: [Wicket-user] Framework Evaluation

2007-04-04 Thread Matej Knopp
Hi I have found comparisons between Wicket and Tapestry (and JSF), but none between Wicket and GWT. Are there any out there? Not that I know about. But when evaluating GWT, just don't miss one fact: No site made by GWT will be crawled by google or any other crawlers. When using GWT, you

Re: [Wicket-user] Multiple Modal Windows (sunraider)

2007-04-03 Thread Matej Knopp
what version of wicket are you using? On 4/3/07, tooy li(Gmail) [EMAIL PROTECTED] wrote: no,it's still here today, :P i believe martijn already fixed this a few days ago -igor On 4/2/07, Stefan Lindner [EMAIL PROTECTED] wrote: I think this is a general IE problem. The

Re: [Wicket-user] ajax modal window don't work at the CryptedUrl in the current snapshot

2007-04-03 Thread Matej Knopp
how is this related to modal window ?! On 4/3/07, tooy li(Gmail) [EMAIL PROTECTED] wrote: hi, when i try the crypted url in the current snap shot , get the below error. 180953 [btpool0-4] ERROR wicket.RequestCycle - [Ljava.lang.String; java.lang.ClassCastException: [Ljava.lang.String; at

Re: [Wicket-user] Closing ModalWindow leaves Text Components locked

2007-04-03 Thread Matej Knopp
This happens to me sometimes with multiple modal windows on IE6. But i can't reproduce it. It looks to be related to the focus preserving code. -Matej On 4/2/07, Matej Knopp [EMAIL PROTECTED] wrote: This could be problem with modal window, the code changed recently, will look at it soon

Re: [Wicket-user] ajax refresh don't wok in the current snapshot for 2.0

2007-04-03 Thread Matej Knopp
can you post the stacktrace? On 4/3/07, tooy li(Gmail) [EMAIL PROTECTED] wrote: hi, I find it cannot work for a repeat viewer and it work well in the previouse version the below is my code WebMarkupContainer listContainer = new WebMarkupContainer(form, listContainer); RepeatingView

Re: [Wicket-user] Multiple Modal Windows (sunraider)

2007-04-03 Thread Matej Knopp
As I said, this is not going to be fixed for 1.2.x brach. The fixes are for 1.x only, (which will become 1.3). -Matej On 4/3/07, Eelco Hillenius [EMAIL PROTECTED] wrote: I am currently using Wicket-1.2.4, and also tried the build 1.2.5 version from SVN yesterday. It doesn't work in both

Re: [Wicket-user] Multiple Modal Windows

2007-04-02 Thread Matej Knopp
fixed for 1.x (1.3). But it's unprobable this fix will find it's way to 1.2.6. -Matej On 4/2/07, sunraider [EMAIL PROTECTED] wrote: Hi, I am having a strange problem in IE 6.0 with modal windows. The use case follows: I have one modal window with drop downs and I have another modal window

Re: [Wicket-user] Multiple Modal Windows (sunraider)

2007-04-02 Thread Matej Knopp
again, this is fixed for 1.x. But not for 1.2, and I doubt it will be. On 4/2/07, Igor Vaynberg [EMAIL PROTECTED] wrote: i believe martijn already fixed this a few days ago -igor On 4/2/07, Stefan Lindner [EMAIL PROTECTED] wrote: I think this is a general IE problem. The ModalWindow

Re: [Wicket-user] Closing ModalWindow leaves Text Components locked

2007-04-02 Thread Matej Knopp
This could be problem with modal window, the code changed recently, will look at it soon. -Matej On 4/2/07, ChuckDeal [EMAIL PROTECTED] wrote: 1.3.0 (revision 519912) I had experienced this a while back, but I thought it was my code. Now, I'm working with the component again and it seems

Re: [Wicket-user] Get versionManager null error after upgrading the wicket to the current snapshot.

2007-03-31 Thread Matej Knopp
Is it the latest svn version? There have been several important versioning fixes lately, i suggest you checking the latest from svn. -Matej On 3/31/07, tooy li(Gmail) [EMAIL PROTECTED] wrote: I complained the ajax modal window cannot show every time when i click the ajax link ,after the

Re: [Wicket-user] AJAX modal window (1.2.5)and form

2007-03-29 Thread Matej Knopp
a page instead? regards Nino -Oprindelig meddelelse- Fra: [EMAIL PROTECTED] på vegne af Matej Knopp Sendt: ma 26-03-2007 14:37 Til: wicket-user@lists.sourceforge.net Emne: Re: [Wicket-user] AJAX modal window (1.2.5)and form If you have nested forms it will fail. Nested forms

Re: [Wicket-user] About ModalWindow example for wicket 1.3

2007-03-29 Thread Matej Knopp
what version are you using? can you check if this still happens with latest 1.3 wicket version? -Matej On 3/29/07, Chan Man Kam [EMAIL PROTECTED] wrote: Dear all, At first, I got this exception, after I click Close this window with result OK inside the ModalWindow.

Re: [Wicket-user] About ModalWindow example for wicket 1.3

2007-03-29 Thread Matej Knopp
Matej Knopp wrote: what version are you using? can you check if this still happens with latest 1.3 wicket version? -Matej On 3/29/07, Chan Man Kam [EMAIL PROTECTED] wrote: Dear all, At first, I got this exception, after I click Close this window with result OK inside

Re: [Wicket-user] Ajax component replaceWith and browser back-button problems

2007-03-28 Thread Matej Knopp
Peter, are you using 1.x? this can be caused by ajax requests being non-versioned in 1.2. In 1.x, the changes should be merged to latest version. On 3/28/07, Igor Vaynberg [EMAIL PROTECTED] wrote: matej didnt you fix this in 1.x svn? -igor On 3/28/07, Peter Thomas [EMAIL PROTECTED] wrote:

Re: [Wicket-user] howto display html as is?

2007-03-27 Thread Matej Knopp
label.setEscapeModelStrings(false)' On 3/27/07, Matej Knopp [EMAIL PROTECTED] wrote: labelsetEscapeModelStrings(false); -Matej On 3/27/07, Ralf Eichinger [EMAIL PROTECTED] wrote: I'm developing a cms. I want to output a html-string inside a wicket-page. when I do like this: Label

Re: [Wicket-user] howto display html as is?

2007-03-27 Thread Matej Knopp
labelsetEscapeModelStrings(false); -Matej On 3/27/07, Ralf Eichinger [EMAIL PROTECTED] wrote: I'm developing a cms. I want to output a html-string inside a wicket-page. when I do like this: Label lblArticleContent = new Label(lblArticleContent, article.getHtmlContent());

Re: [Wicket-user] AutoComplete TextField broken

2007-03-26 Thread Matej Knopp
What wicket version are you using? On 3/26/07, Lan Boon Ping [EMAIL PROTECTED] wrote: Hi all, I have a problem in AutoComplete textfield, here are the use cases. Use case A - test auto-complete field - (works) - type www.google.com in URL bar and press enter to navigate google main page.

Re: [Wicket-user] Wicket AJAX newbie

2007-03-26 Thread Matej Knopp
I really don't understand what's the big deal here. The method name can change if there is good reason for it. What does it do? It renders a hidden placeholder with id same as original component where the component would not be rendered. How does it affect security? Why would it affect security

Re: [Wicket-user] AutoComplete TextField broken

2007-03-26 Thread Matej Knopp
); } -Matej On 3/26/07, Lan Boon Ping [EMAIL PROTECTED] wrote: Hi, Matej Knopp! I'm using wicket-1.2.3. Thanks. Regards Boon Ping On 3/26/07, Matej Knopp [EMAIL PROTECTED] wrote: What wicket version are you using? On 3/26/07, Lan Boon Ping [EMAIL PROTECTED] wrote: Hi all

Re: [Wicket-user] AutoComplete TextField broken

2007-03-26 Thread Matej Knopp
the problem. Unfortunately, we couldn't upgrade to new version of wicket for some reasons. Is there any workaround solution for this problem? Thanks Regards Boon Ping. On 3/26/07, Matej Knopp [EMAIL PROTECTED] wrote: That's an rather old version of wicket. You should really consider

Re: [Wicket-user] AJAX modal window (1.2.5)and form

2007-03-26 Thread Matej Knopp
If you have nested forms it will fail. Nested forms are not supported in wicket 1.2. If you need separate form in modal window in 1.2, the safest bet is to use a page inside modal window. -Matej On 3/26/07, Nino Wael [EMAIL PROTECTED] wrote: Hi I have a AJAX modal window wich contains a

Re: [Wicket-user] Problem with ajax tree and listView

2007-03-26 Thread Matej Knopp
I see. It's probably same thing as for 1.x, that TreeItem doesn't reattach the tree itself. -Matej On 3/26/07, Isaac Weng [EMAIL PROTECTED] wrote: Oops, I forgot to mention that. I'm using 1.2.5 release. Isaac Matej Knopp wrote: Hi, as a temporary solution you can. But this is bug

Re: [Wicket-user] the modal window cannot work in ie for wicket 2.0 snapshot

2007-03-26 Thread Matej Knopp
Hi, indeed it doesn't work in IE6. Thanks for spotting this. Fix is already in svn, would you mind trying if it helps? -Matej On 3/26/07, tooy li(Gmail) [EMAIL PROTECTED] wrote: hi, it cannot work in IE 6 only , I had tried many pc to prove it . Since mostly of client people use IE, I have

Re: [Wicket-user] IBM to adopt Wicket as standard web framework

2007-03-26 Thread Matej Knopp
http://mail-archives.apache.org/mod_mbox/tapestry-users/200504.mbox/[EMAIL PROTECTED] On 3/26/07, Alexandre Bairos [EMAIL PROTECTED] wrote: It´d be fantastic. But it's a bit suspicious, considering the magic date. :) On 3/26/07, Francis Amanfo [EMAIL PROTECTED] wrote: I'm only a

Re: [Wicket-user] filtering on table

2007-03-26 Thread Matej Knopp
hi, the filtering won't work with ajax due to invalid markup it produces. Though there could be possible workaround using nested forms. -Matej On 3/26/07, Wouter de Vaal [EMAIL PROTECTED] wrote: Hi, I've got FilterToolbar working on my DataTable (ajax version) when I use a single

Re: [Wicket-user] no public field or method named onfocus message

2007-03-26 Thread Matej Knopp
huh, i haven't really tested the code with applet. I guess i'd need a quickstart so that i can reproduce this behavior to be able to fix it. -Matej On 3/26/07, jamieballing [EMAIL PROTECTED] wrote: We have a problem with a page that has an applet on it. The issue only occurs in Firefox (it

Re: [Wicket-user] the modal window cannot work in ie fro wicket 2.0 snapshot

2007-03-25 Thread Matej Knopp
Hi. I've commited the modal window changes but I'm not really aware of anything that it could break. The wicket examples work, can you please provide testcase that demonstrates the behavior so that I can look at it? As for components not being detached, i suspect it is a problem with latest

Re: [Wicket-user] Nobody can fix the ajax modal window bug in 2.0 snapshot?

2007-03-25 Thread Matej Knopp
huh? I've tested the examples from latest 2.0 and the modal window works as expected. Unless you can be more specific and can provide a quickstart project that demonstrates the problem I'm affraid there's not much i can do. -Matej On 3/25/07, lihanrong [EMAIL PROTECTED] wrote: I had try it

Re: [Wicket-user] Problem with ajax tree and listView

2007-03-25 Thread Matej Knopp
Matej Knopp wrote: hi, this really is weird. Can you post a quick start project that demonstrates the behavior? -Matej - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel

Re: [Wicket-user] DropDown comes on top of ModalWindow

2007-03-24 Thread Matej Knopp
Okay. I've fixed that for wicket 1.x. Can you check if it works? Also ModalWindow.close() is no longer static. 1.2 and trunk are not fixed and i probably won't be. -Matej On 3/23/07, vsubedar [EMAIL PROTECTED] wrote: When using panels or pages, in a Modal dialog all the DropDownChoices shine

Re: [Wicket-user] DropDown comes on top of ModalWindow

2007-03-23 Thread Matej Knopp
Can you please be more specific? This issue is supposed to be taken care of. Did you put panel modal window inside of iframe modal window? What version of wicket are you using? -Matej On 3/23/07, vsubedar [EMAIL PROTECTED] wrote: When using panels or pages, in a Modal dialog all the

Re: [Wicket-user] Problem with ajax tree and listView

2007-03-23 Thread Matej Knopp
hi, this really is weird. Can you post a quick start project that demonstrates the behavior? -Matej On 3/23/07, Isaac Weng [EMAIL PROTECTED] wrote: Hi, This is my first time asking questions here. Hope I can make my question clear. I'v tried to extend the ajax tree in the

Re: [Wicket-user] DropDown comes on top of ModalWindow

2007-03-23 Thread Matej Knopp
I see. This is probably bug in modal window when it's not hiding dropdowns from it's parent. On 3/23/07, Stefan Lindner [EMAIL PROTECTED] wrote: I have the same problem too with wicket 2. A Model window containing a panel with drop down choice lists. Whe I open a model window on top of thi

Re: [Wicket-user] sos, ajax refresh chaos

2007-03-23 Thread Matej Knopp
can you provide a quickstart example that demonstrates this problem? -Matej On 3/24/07, tooy li(Gmail) [EMAIL PROTECTED] wrote: last time ,I mentioned the table cannot be update after the ajax modal window closed. now it can work when i set the outputmarkid to true, but,... it's strange. it

Re: [Wicket-user] Wicket and Flash not playing well together ?

2007-03-23 Thread Matej Knopp
Unable to load class with name: eu.kwark.main.settings.xml ? It really looks like you're trying to reference packaged resource that's not there. -Matej On 3/23/07, Landry Soules [EMAIL PROTECTED] wrote: Hello ! I'm working on a site that will integrate some cool flash multimedia stuff. My

Re: [Wicket-user] Controlling back button of client

2007-03-21 Thread Matej Knopp
This is not really wicket related. You need a javascript library that alows you to do that, however, the solutions are never 100% anyway. -Matej On 3/21/07, Konstantinos Lazouras [EMAIL PROTECTED] wrote: Hi, some pages of our application have a back button (i.e. a button where we do stuff

Re: [Wicket-user] HttpSessionStore vs SecondLevelCacheSessionStore(FilePageStore)

2007-03-19 Thread Matej Knopp
Yes. Two active pages. He passes reference from one page to another. The other page modifies the reference. But he doesn't return to the previous page using setResponsePage(). That would work, but this is not the case. Because here the other page is in an iframe of the first page. As far as I know

Re: [Wicket-user] HttpSessionStore vs SecondLevelCacheSessionStore(FilePageStore)

2007-03-19 Thread Matej Knopp
every pagemap has an active page. On 3/19/07, Matej Knopp [EMAIL PROTECTED] wrote: Will that work for secondlevelcachesessionstore as well? If so, it should only be matter of calling modalWindow.setPageMapName(myWindowPageMap); -Matej On 3/19/07, Johan Compagner [EMAIL PROTECTED

Re: [Wicket-user] HttpSessionStore vs SecondLevelCacheSessionStore(FilePageStore)

2007-03-19 Thread Matej Knopp
Okay, I can confirm setting the pagemap works (but only with most recent version of wicket). Anyway, the fragility is still there I'm afraid. On 3/19/07, Matej Knopp [EMAIL PROTECTED] wrote: Well, I guess it should work then. Still, it seems to be quite fragile solution to me. Because as soon

Re: [Wicket-user] HttpSessionStore vs SecondLevelCacheSessionStore(FilePageStore)

2007-03-19 Thread Matej Knopp
references to pages (breadcrumbs) it won't really matter.. Pages are saved only once in there own file. johan On 3/19/07, Matej Knopp [EMAIL PROTECTED] wrote: Okay, take this scenario: Using second level sessionstore, with multiwindow support off (default). You open two pages in two

Re: [Wicket-user] Any way to disable the modal window close warning?

2007-03-18 Thread Matej Knopp
Hi. There is a way, however this will work only with recent versions of wicket. I'm not sure whether this got to 1.2.5. Modal window has a javascript flag that is controlling whether the confirmation dialog will show up, it's called Wicket.Window.unloadConfirmation. So anywhere in your page, put

Re: [Wicket-user] Table with TextFields example (Dissapointed in Wicket)

2007-03-18 Thread Matej Knopp
Hi. I'm not sure where your problem lies. What kind of table are you using? Is the repeating component a listview, dataview or datatable? -Matej On 3/18/07, Jean-Baptiste Quenot [EMAIL PROTECTED] wrote: * Udora: I was attracted to Wicket because of its finesse and all the stories

Re: [Wicket-user] how do refresh the repeatview after close ajax modal window?

2007-03-16 Thread Matej Knopp
19:04:13 +0100 From: Matej Knopp [EMAIL PROTECTED] Subject: Re: [Wicket-user] how do refresh the repeatview after close ajax modal window? To: wicket-user@lists.sourceforge.net Message-ID: [EMAIL PROTECTED] Content-Type: text/plain; charset=ISO-8859-1; format=flowed To refresh

Re: [Wicket-user] Tapestry - Wicket | Action Service

2007-03-16 Thread Matej Knopp
Easiest way to call a wicket method from javascript is imho to extends AbstractDefaultAjaxBehavior - implement the respond() method, call getCallbackScript() to obtain javascript that needs to be executed to call the respond() method. The behavior must be added to a component (or page, as page

Re: [Wicket-user] how do refresh the repeatview after close ajax modal window?

2007-03-15 Thread Matej Knopp
To refresh a repeater, you have to add it's parent (e.g. webmarkupcontainer) to ajax request target. Repeater itself has no markup. -Matej On 3/15/07, tooy li(Gmail) [EMAIL PROTECTED] wrote: for the defaultdatatable ,i only need add a parent container of datatable into the target of ajax

Re: [Wicket-user] HttpSessionStore vs SecondLevelCacheSessionStore(FilePageStore)

2007-03-15 Thread Matej Knopp
This really is strange. Do you have panel inside the window or a page? -Matej On 3/15/07, ChuckDeal [EMAIL PROTECTED] wrote: Yeah, already tried that :) I knew there was something else I was supposed to say in that last post... On a side note, I don't know if this is related, but I get a

Re: [Wicket-user] HttpSessionStore vs SecondLevelCacheSessionStore(FilePageStore)

2007-03-15 Thread Matej Knopp
the ModalWindow, I stopped getting those exceptions! I didn't get the chance to debug it further because my top priority was figuring out what had changed since the last time my code worked. Chuck Matej Knopp-2 wrote: This really is strange. Do you have panel inside the window or a page

Re: [Wicket-user] wicket-ajax.js

2007-03-14 Thread Matej Knopp
Actually, it should be fixed already. Can you please check if it works as it should? -Matej On 3/14/07, Vincent Demay [EMAIL PROTECTED] wrote: Hi I do not see difference between you two ;) samples but maybe you was talking about that : https://issues.apache.org/jira/browse/WICKET-387. I

Re: [Wicket-user] wicket-ajax.js

2007-03-14 Thread Matej Knopp
heh, of course. sorry for that. i wonder how could i have missed that, as i have tested script. -Matej On 3/14/07, ChuckDeal [EMAIL PROTECTED] wrote: Sorry, I should have been explicit about what I was pointing out. The last char of the first line (var e ...) should be a semicolon, not an

Re: [Wicket-user] Reverting the constructor change of 2.0

2007-03-13 Thread Matej Knopp
I go with crowd, C. On 3/13/07, Igor Vaynberg [EMAIL PROTECTED] wrote: i would opt for (b) but seems im in a minority :) -igor On 3/13/07, Eelco Hillenius [EMAIL PROTECTED] wrote: Can I have the opinions of all committers please? Johan is on a skiing trip but opts for c). Eelco

Re: [Wicket-user] Reverting the constructor change of 2.0

2007-03-10 Thread Matej Knopp
c) as well, except I don't think it's that good idea to release a beta before that. It certainly ain't beta if we expect the code to change that significantly. So imho either call it alpha or release it afterwards we commit the changes. -Matej Eelco Hillenius wrote: Hi, It looks like the

Re: [Wicket-user] AjaxTimer clearTimeout

2007-03-09 Thread Matej Knopp
Hi, I'm afraid there's no easy solution. But two thoughts are quiete right. Either you can clearTimeout, or wrap the setTimeout method callback (not the settimeout itself!) to check a condition whether it actually can fire ajax request to server. But for both these you will need to slightly

Re: [Wicket-user] IMPORTANT: your opinion on the constructor change in 2.0

2007-03-07 Thread Matej Knopp
It's not just about markup attributes in constructor. It's about knowing the markup hierarchy in constructor. So the component can e.g. find out in which form it is (needed for AjaxSubmitLink for example). Without this you have to pass the form instance as constructor parameters, which is

Re: [Wicket-user] Fwd: VOTE: backporting wicket 2.0 model change to 1.3

2007-03-07 Thread Matej Knopp
1 port it to 1.3 -Matej Johan Compagner wrote: In 2.0 we have a model change: IModel.getObject(Component) - IModel.getObject() IModel.setObject(Component,Object) - IModel.setObject(Object) So if you want to object from a component in 2.0 you only have to do:

Re: [Wicket-user] AutoCompleteTextField and special characters - solution

2007-02-15 Thread Matej Knopp
My guess would be that AjaxCompleteTextField doesn't use POST to send the entered string to server, it uses get instead. Which means that the string is part of URL. -Matej Flemming Boller wrote: Hi I just wanted to share a little trick with you guys who might also be struggling with

Re: [Wicket-user] second level cache - why not to use ehcache

2007-02-15 Thread Matej Knopp
I've already replaced that implementation. I can paste here one from my local history. Beware, this might not be the right version and I don't know ehcache very well, I'm pretty sure there are ways to do this better. Of course i've played with the cache configuration, this is probably not

Re: [Wicket-user] second level cache - why not to use ehcache

2007-02-14 Thread Matej Knopp
I've tried writing a IPageStore using ehcache today, the performance wasn't better than what we already have. And Wicket second level session store is not really a cache, it's works differently. -Matej Eelco Hillenius wrote: On 2/14/07, Andrew Klochkov [EMAIL PROTECTED] wrote: I looked at

Re: [Wicket-user] second level cache - why not to use ehcache

2007-02-14 Thread Matej Knopp
your system can handle. What do you say then? 200 page? 2000 pages? What does that cost? johan On 2/14/07, *Matej Knopp* [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] wrote: I've tried writing a IPageStore using ehcache today, the performance wasn't better than what we already

Re: [Wicket-user] low wicket performance - intensive file system usage

2007-02-13 Thread Matej Knopp
This is very strange. We are know about the FilePageStore.storePage performance issues and johan is working on optimizing that. but CompressedPackageResource shouldn't take 30%. Definitely not. caches the resource so the serving should be immediate. Unless your machine runs out of memory, in

Re: [Wicket-user] multiple rendering at same time

2007-02-13 Thread Matej Knopp
This is only true for one session. Locking means that only one page of each session will be processed at the same time. This way we ensure that the session state remains consisted. This is not affecting the number of concurrent users. -Matej Scott Lusebrink wrote: I've realized that wicket

Re: [Wicket-user] Wicket-user Digest, Vol 9, Issue 125

2007-02-13 Thread Matej Knopp
You have to use your own expiration page (configure through application settings). In the page either use link with target=_top, or try tag base with target=_top, it might help it. -Matej ketan gote wrote: hello friends i want to modify expire page of wicket , as it has some problem.

Re: [Wicket-user] Firefox 2 and wicket-ajax - known issue?

2007-02-10 Thread Matej Knopp
nope. can you provide content of ajax console? (if any) -Matej karthik Guru wrote: Any known issue with wicket-ajax and Mozilla 2.0? I have an Ajax checkbox that doesn't seem to trigger the Ajax request. But it seems to be working fine with IE 6 and FF 1.5 thanks, Karthik

Re: [Wicket-user] Question about using RedirectPage in a modalwindow

2007-02-09 Thread Matej Knopp
Hi. The major problem is (amongst other problems) that you have page from another host in modal window. Generally, this is going to cause some trouble, because it's cross site scripting. The browsers are trying to prevent that. Another thing is that I don't understand how you can submit

Re: [Wicket-user] non-draggable Windows?

2007-02-08 Thread Matej Knopp
This is not possible to do with modal window. If you need something like this it's probably better to use just absolute positioned divs. -Matej Chris Lintz wrote: Hi all. Is it possible to use the Modal Window in a non-draggable state? I am at a loss for how I can change this behavior of

<    1   2   3   4   5   6   7   >