Re: [Wicket-user] Wicket Ajax Debug: Channel busy - postponing ...

2007-02-23 Thread Igor Vaynberg
create a patch that fixes it? :) -igor On 2/23/07, Konstantin [EMAIL PROTECTED] wrote: How can I help you fix it ? igor.vaynberg wrote: yep, there is a bug that affects 1.2.5 and 1.2.4 i believe -igor On 2/23/07, Konstantin [EMAIL PROTECTED] wrote: 1.2.5 In which version ?

Re: [Wicket-user] Best practice and use of detachable models

2007-02-22 Thread Igor Vaynberg
On 2/22/07, Gabor Szokoli [EMAIL PROTECTED] wrote: Hi! On 2/22/07, Peter Thomas [EMAIL PROTECTED] wrote: Will new Label(foo, fooModel.getFoo() + bar)kind of hardcoding conflict in some subtle way with the concept of detachable models? [detachable model for concatenated string snipped]

Re: [Wicket-user] Can a model be detachable AND compound?

2007-02-22 Thread Igor Vaynberg
sure, you can chain models :) new CompoundPropertyModel(new LoadableDetachableModel() {} ); -igor On 2/22/07, Andrew Klochkov [EMAIL PROTECTED] wrote: I agree that wicket models are not easy to understand especially compound and bound compound models. And the thing I wanted to have is

Re: [Wicket-user] Model location via ICompoundModel

2007-02-22 Thread Igor Vaynberg
stack frames if you can do it with a simple loop. -igor On 2/22/07, Charlie Dobbie [EMAIL PROTECTED] wrote: Hi all, Taken from the Best practice and use of detachable models thread: On 2/22/07, Igor Vaynberg [EMAIL PROTECTED] wrote: no, not exactly. if you havent set a model on the component

Re: [Wicket-user] invalid quotes escaping in event handlers scripts

2007-02-22 Thread Igor Vaynberg
how do you escape quotes in javascript then if not \ ? -igor On 2/22/07, Andrew Klochkov [EMAIL PROTECTED] wrote: BTW it's my second post about incorrect quotes escaping and the first one was more than two months ago :-( Andrew Klochkov wrote: I'm trying to open a modal window right

Re: [Wicket-user] span tag inside a tag

2007-02-22 Thread Igor Vaynberg
Page link lnk = new PageLink(NameLink, new ShowCategory(category)) this is very very very bad. you are precreating your page instances before the users even click the link! if your listview has more rows then your pagemap holds you wont even be able to click on them because those new pages will

Re: [Wicket-user] Please help me understand Wicket

2007-02-22 Thread Igor Vaynberg
On 2/22/07, Jason Roelofs [EMAIL PROTECTED] wrote: I have a list of available objects displayed on my page as Links. When I click on these links, how are you supposed to know what you clicked on and load up that full object for further use? lol, is that because you did not have to put the pk

Re: [Wicket-user] wicket:component, container, pseudo, et al

2007-02-22 Thread Igor Vaynberg
wicket:container is in trunk only it is just a pseudo tag - a container that has setrenderbodyonly(true) called on it. imagine you have a listview that builds tds like this trspan wicket:id=listviewtd.../tdtd.../td/span/tr validating editors in an ide will complain because span is not allowed

Re: [Wicket-user] wicket:component, container, pseudo, et al

2007-02-22 Thread Igor Vaynberg
the following? wicket:border wicket:child wicket:container wicket:extend wicket:link wicket:message wicket:panel On 2/22/07, Eelco Hillenius [EMAIL PROTECTED] wrote: Ah, pretty sweet actually. Good one for the WIKI and Wicket In Action as well. Eelco On 2/22/07, Igor Vaynberg

Re: [Wicket-user] Adding components dynamically

2007-02-22 Thread Igor Vaynberg
or add a simple repeatingview, and then add any number of panels/fragments into it if you need a variable number -igor On 2/22/07, Eelco Hillenius [EMAIL PROTECTED] wrote: I am new to Wicket, I have been looking at it for the last couple of days. Looks like whatever controls we create on

Re: [Wicket-user] Strange Weblogic problem with DataTable - help needed!

2007-02-21 Thread Igor Vaynberg
i could not reproduce it here http://wicketstuff.org/wicket13/repeater/ -igor On 2/21/07, Niels Bo [EMAIL PROTECTED] wrote: Hi We were ready to put a new wicket application into production, but after deploying it it on our pre-production server with Weblogic 8.1SP5+JRockit, we see a really

Re: [Wicket-user] Strange Weblogic problem with DataTable - help needed!

2007-02-21 Thread Igor Vaynberg
heh, no i dont have any of that stuff installed. can you reproduce that in an app that is running in deployment mode? -igor On 2/21/07, Niels Bo [EMAIL PROTECTED] wrote: But did you try with Weblogic 8.1.5+JRockit JVM? We did not see any problems while developing using Sun JVM. Niels

Re: [Wicket-user] Strange Weblogic problem with DataTable - help needed!

2007-02-21 Thread Igor Vaynberg
On 2/21/07, Niels Bo [EMAIL PROTECTED] wrote: and deployed the wicket-examples-1.2.5.war, which is in develpment mode and what happens if you deploy it in _production_ mode??? -igor - Take Surveys. Earn Cash. Influence

Re: [Wicket-user] Strange Weblogic problem with DataTable - help needed!

2007-02-21 Thread Igor Vaynberg
s/production/deployment/ -igor On 2/21/07, Igor Vaynberg [EMAIL PROTECTED] wrote: On 2/21/07, Niels Bo [EMAIL PROTECTED] wrote: and deployed the wicket-examples-1.2.5.war, which is in develpment mode and what happens if you deploy it in _production_ mode??? -igor

Re: [Wicket-user] Dumb question about serialization

2007-02-21 Thread Igor Vaynberg
7 -igor On 2/21/07, Peter Thomas [EMAIL PROTECTED] wrote: What is the default for the maxPageVersions? On 2/21/07, Eelco Hillenius [EMAIL PROTECTED] wrote: If you don't need back button support at all, just have all your pages (or probably some base page) override isVersioned (or use

Re: [Wicket-user] Best practice and use of detachable models

2007-02-21 Thread Igor Vaynberg
On 2/21/07, Peter Thomas [EMAIL PROTECTED] wrote: Hi, I use Hibernate and have got a reasonably sized app working with Wicket. I am aware of the concept of detachable models and want to use it effectively and I have the following questions. If the information is already there on the wiki or

Re: [Wicket-user] Best practice and use of detachable models

2007-02-21 Thread Igor Vaynberg
On 2/21/07, Peter Thomas [EMAIL PROTECTED] wrote: Thanks Igor. This really helped, and along the way I realized I missed a few fundamentals. One more question below: d) Now I am iterating using ListView. How exactly do I initialize the ListView so that it uses the installed detachable

Re: [Wicket-user] Why does setResponse sometimes does notResponse?

2007-02-20 Thread Igor Vaynberg
and you made sure everything is being detached properly? :) -igor On 2/20/07, Eelco Hillenius [EMAIL PROTECTED] wrote: the fix is already in. There are no problems, everything works. This thread can be ended. Eelco On 2/20/07, Johan Compagner [EMAIL PROTECTED]

Re: [Wicket-user] Toggle visibility for a component using ajax

2007-02-20 Thread Igor Vaynberg
for wicket.protocol.http.request.urlcompressing.UrlCompressor.. Alex Objelean wrote: ... and a quick reply about your issue is (quoting Igor Vaynberg): the proper way to do this is to add button's parent, that way the parent will repaint itself without the button's tag in it, and later when you make it visible the parent

Re: [Wicket-user] Image loading

2007-02-20 Thread Igor Vaynberg
so if the images are in a web-accessible folder why would you want to stream them? -igor On 2/20/07, Daniele Dellafiore [EMAIL PROTECTED] wrote: Just to clarify, this code works: WebMarkupContainer image = new WebMarkupContainer(image) { public void

Re: [Wicket-user] Vertical Tabs

2007-02-20 Thread Igor Vaynberg
if you set a class on the tab panel then you can use that class to scope the css styles properly -igor On 2/20/07, burnayev [EMAIL PROTECTED] wrote: Thank you Igor. I'm trying to implement nested tabs - basic navigation pattern where you have horizontal tabs on top and vertical tabs at

Re: [Wicket-user] Virtual URLs

2007-02-20 Thread Igor Vaynberg
just checked in WICKET-290 which should fix that i think -igor On 2/20/07, Ryan [EMAIL PROTECTED] wrote: Map the wicket servlet to /* instead. Keep in mind the note from the following wiki page about mapping to /* though:

Re: [Wicket-user] Why does setResponse sometimes does notResponse?

2007-02-20 Thread Igor Vaynberg
umm...that was a joke :) -igor On 2/20/07, Eelco Hillenius [EMAIL PROTECTED] wrote: On 2/20/07, Igor Vaynberg [EMAIL PROTECTED] wrote: and you made sure everything is being detached properly? :) Yes. That was the sole idea about keeping a stack with request targets to start with. Eelco

Re: [Wicket-user] External Markup

2007-02-20 Thread Igor Vaynberg
there is an example on how to do this in wicket-examples http://wicketstuff.org/wicket13/customresourceloading/ -igor On 2/20/07, Scott Lusebrink [EMAIL PROTECTED] wrote: I'm trying to have a panel use markup thats not the panel name.html file by doing @Override protected void

Re: [Wicket-user] Another portlet bug:)

2007-02-20 Thread Igor Vaynberg
since janne is mia we need to once again decide on the future of the portlet support. if we dont have a core committer who wants to work on it and knows how the portlet spec works we might consider offshoring this portion into wicket-stuff. -igor On 2/20/07, Eelco Hillenius [EMAIL PROTECTED]

Re: [Wicket-user] Form submitted normally and via AJAX? (Wicket 1.2.5)

2007-02-20 Thread Igor Vaynberg
. On 2/15/07, Igor Vaynberg [EMAIL PROTECTED] wrote: yes there is a better way. you should handle it inside the button's onsubmit not inside the form's onsubmit. that way: add(new Button() { onsubmit() { setresponsepage(..) isvisible(){...}}); add(new AjaxSubmitButton(onsubmit(target

Re: [Wicket-user] Form submitted normally and via AJAX? (Wicket 1.2.5)

2007-02-20 Thread Igor Vaynberg
, Igor Vaynberg [EMAIL PROTECTED] wrote: yes, that is also something i do not like. i think form.submit() should be called before the button.onsubmit() what i tend to do is to leave form.submit() unused and put all the logic into button.onsubmit() what do you mean no onerror method

Re: [Wicket-user] Another portlet bug:)

2007-02-20 Thread Igor Vaynberg
janne! welcome back! -igor On 2/20/07, Janne Hietamäki [EMAIL PROTECTED] wrote: bang. I think I've been missing long enough.. :-P I'll check those portlet bugs.. Janne On 20.2.2007, at 20.25, Igor Vaynberg wrote: since janne is mia we need to once again decide on the future

Re: [Wicket-user] Uploading from an applet

2007-02-20 Thread Igor Vaynberg
i would wrap the applet in a wicket component that would do the necessary wiring -igor On 2/20/07, MadDog [EMAIL PROTECTED] wrote: I'm working on an application where we need to upload files. I've gotten the simple upload example via a form working just fine. However in order to enable

Re: [Wicket-user] Ajax Firefox issue

2007-02-20 Thread Igor Vaynberg
are you using tables to build the layout for your form? -igor On 2/20/07, Shawn Tumey [EMAIL PROTECTED] wrote: Forgot - Wicket version 1.2.4 :) On 2/20/07, Shawn Tumey [EMAIL PROTECTED] wrote: Hello, I have a form that changes depending on which radio button is selected. By changes I

Re: [Wicket-user] How to include *.htc files in css files?

2007-02-19 Thread Igor Vaynberg
// This is licensed under the CC-GNU LGPL, version 2.1 or later. // For details, see: http://creativecommons.org/licenses/LGPL/2.1/ cant, its lgpl -igor On 2/19/07, Zágoni Elemér [EMAIL PROTECTED] wrote: Hi Igor, It's a good idea to include the InternetExplorer png fix as a Behavior in

Re: [Wicket-user] Why does setResponse sometimes does notResponse?

2007-02-19 Thread Igor Vaynberg
i tried to do that, but the sentiment at that time was that throwing an exception internally was not explicit enough. maybe times have changed. -igor On 2/19/07, manu [EMAIL PROTECTED] wrote: available, and I cannot think of a good end-user reason why this couldn't be called. The

Re: [Wicket-user] Why does setResponse sometimes does notResponse?

2007-02-19 Thread Igor Vaynberg
sure, but does it abort the page or do you end up with an extra page in the pagemap? -igor On 2/19/07, Eelco Hillenius [EMAIL PROTECTED] wrote: Guys, guys, did you read my reply? I fixed this and you can now use setResponsePage in your constructor or anywhere you want!. I just made this

Re: [Wicket-user] Pass popup parameters from parent page

2007-02-19 Thread Igor Vaynberg
there is a lot of javascript out there that shows you how to read the currently selected item out of a select box -igor On 2/19/07, serban.balamaci [EMAIL PROTECTED] wrote: Hi. I need to open a popup page that displays information that is related to parameters in the parent page. For

Re: [Wicket-user] Why does setResponse sometimes does notResponse?

2007-02-19 Thread Igor Vaynberg
at least if in devel mode you should log a warning if you detect this. or do you not detect its in a constructor...you just push a new target? -igor On 2/19/07, Eelco Hillenius [EMAIL PROTECTED] wrote: On 2/19/07, Igor Vaynberg [EMAIL PROTECTED] wrote: sure, but does it abort the page or do

Re: [Wicket-user] Vertical Tabs

2007-02-19 Thread Igor Vaynberg
you can style tabbedpanel in extensions the tabs are just a ul -igor On 2/19/07, burnayev [EMAIL PROTECTED] wrote: How do I create vertically stacked tabs? Is it possible to style and/or extend the extensions tab component or do I have to create my own? -- View this message in context:

Re: [Wicket-user] grouping of components with repeaters

2007-02-19 Thread Igor Vaynberg
you would use two repeaters, one inside the other one for outputting group header and footer and the other one inside that one to output the rows in between. -igor On 2/19/07, Alexei Sokolov [EMAIL PROTECTED] wrote: Hello, I'm sorry if this subject was discussed before... if so please

Re: [Wicket-user] Adding component markup to javadoc output

2007-02-19 Thread Igor Vaynberg
why not just attach the wicket source to your ide? for me all i have to do is ctrl+click on a component class and i am taken to its source code. -igor On 2/19/07, Aaron Hiniker [EMAIL PROTECTED] wrote: I am always running into problems where I need to replace a components functionality

Re: [Wicket-user] grouping of components with repeaters

2007-02-19 Thread Igor Vaynberg
don't know how to iterate over groups. I can iterate over every record and I can detect when there is a group boundary. Alex On 2/19/07, Igor Vaynberg [EMAIL PROTECTED] wrote: you would use two repeaters, one inside the other one for outputting group header and footer and the other one inside

Re: [Wicket-user] rendered pages cache

2007-02-18 Thread Igor Vaynberg
i wouldnt cache the page but i would cache the concatenated result you can have a concurrenthashmap in your application keeping softreferences to the concatted text will that work? -igor On 2/18/07, Ittay Dror [EMAIL PROTECTED] wrote: i read this post already ;) i don't want to add

Re: [Wicket-user] rendered pages cache

2007-02-18 Thread Igor Vaynberg
if i got it right what you are doing is reading a bunch of files and combining the result now you dont want to use cache infront of the appserver because the page isnt really static like you said the page itself is just a label that spits out the result of the concatenated text correct? so

Re: [Wicket-user] rendered pages cache

2007-02-18 Thread Igor Vaynberg
so what you really want is a shared resource and not a page :) -igor On 2/18/07, Ittay Dror [EMAIL PROTECTED] wrote: the page has an associated markup. it has place holders for the content, the table of contents and a label (name of file of content). the head tag contains references to css

Re: [Wicket-user] rendered pages cache

2007-02-18 Thread Igor Vaynberg
dont use a page create a shared resource that streams the contents see WebResource and DynamicWebResource -igor On 2/18/07, Ittay Dror [EMAIL PROTECTED] wrote: again, i don't think i follow. my page's markup looks something like: html head link ... script ... /head body div

Re: [Wicket-user] rendered pages cache

2007-02-18 Thread Igor Vaynberg
your template is trivial do you really need something? if you still feel like you do use freemarker or something like that -igor On 2/18/07, Ittay Dror [EMAIL PROTECTED] wrote: ok. thanks. but how do i create the html output? something like 'String output = htmlheadlink...? I would still

Re: [Wicket-user] rendered pages cache

2007-02-18 Thread Igor Vaynberg
but if you do that you cant cache a page instance because if the user starts clicking prev/next you need to somehow refresh the page. -igor On 2/18/07, Ittay Dror [EMAIL PROTECTED] wrote: i thought about it, and i think i really need a page. the reason is that while the data is static, it

Re: [Wicket-user] FeedbackPanels in ListView

2007-02-17 Thread Igor Vaynberg
there really isnt that much we can do, that is the lifecycle of feedback messages, and it has to be like that because of components exactly like the listview - the ones that change hierarchy in onattach. so if you can describe what you are trying to do and not how maybe we can help -igor On

Re: [Wicket-user] How to include *.htc files in css files?

2007-02-16 Thread Igor Vaynberg
that is very interesting, can you reproduce that in a quickstart? also for explorer png fix we have a packaged solution but right now it is only in trunk https://svn.apache.org/repos/asf/incubator/wicket/trunk/wicket-extensions/src/main/java/wicket/extensions/explorerpngfix/ -igor On

Re: [Wicket-user] BoxBorder.setTransparentResolver in wicket 2.0?

2007-02-16 Thread Igor Vaynberg
there is no longer a set, now you have to subclass and override isTransparentResolver also new to 2.0 is IAlternateParentProvider which may or may not be a better fit for your usecase -igor On 2/16/07, Gohan [EMAIL PROTECTED] wrote: Hi, I wonder how you set the TransparentResolver for a

Re: [Wicket-user] A glorified templating engine

2007-02-16 Thread Igor Vaynberg
right now it is possible but is not perfect, we do this with WicketTester, see our unit tests in 3.0 i would like to decouple the internals more to make this easier. -igor On 2/16/07, Gustavo Santucho [EMAIL PROTECTED] wrote: (subject taken from an earlier Igor's post) Is it possible to

Re: [Wicket-user] Wicket 1.2.4 bug (?!?) - changing visibility of a button using ajax

2007-02-16 Thread Igor Vaynberg
you cannot add button directly to the ajax target to change visibility, you have to add some enclosing component lets say you start out with a visible button you hide it and add it directly so now what wicket will try to do is to go find input id=button/ and replace that tags outer html with -

Re: [Wicket-user] BoxBorder.setTransparentResolver in wicket 2.0?

2007-02-16 Thread Igor Vaynberg
let me make it unfinal :) -igor On 2/16/07, Gohan [EMAIL PROTECTED] wrote: Overriding isTransparentResolver was my first though as well but it won't work since BoxBorder is final. Guess I have to look into IAlternateParentProvider. igor.vaynberg wrote: there is no longer a set, now

Re: [Wicket-user] Ajax Component Display Question

2007-02-16 Thread Igor Vaynberg
i have created a rough cut of the implementation. it can use a little cleaning up and i will try to get to that when i have some more time, or if you are going to read through it feel free too :) -igor On 2/16/07, spencer.c [EMAIL PROTECTED] wrote: Update: This worked for me. I have added

Re: [Wicket-user] Form submitted normally and via AJAX? (Wicket 1.2.5)

2007-02-15 Thread Igor Vaynberg
page navigation than the Form's onSubmit/onError methods, or even an entirely better way of doing things? Cheers, Charlie. On 2/14/07, Igor Vaynberg [EMAIL PROTECTED] wrote: i thought you wanted to handle it the same way so why do you need to know if the processing is ajax or regular request

Re: [Wicket-user] Ajax Component Display Question

2007-02-15 Thread Igor Vaynberg
i think the best thing to do is to use javascript for this rather then an ajax trip back to the server. i have done this exact thing in the past with mootools and it worked out very nicely. check out mootools and their tooltips class. what i did was copy and paste and rename that class, change

Re: [Wicket-user] custom serialization problem

2007-02-15 Thread Igor Vaynberg
but those cached entities are the key :) because hib has to guarantee instance identity within the session scope - that cache is what makes the long-session pattern possible :) -igor On 2/15/07, Eelco Hillenius [EMAIL PROTECTED] wrote: On 2/15/07, Igor Vaynberg [EMAIL PROTECTED] wrote: why

Re: [Wicket-user] Why does setResponse sometimes does notResponse?

2007-02-15 Thread Igor Vaynberg
you shouldnt be calling setresponsepage inside constructors try RestartResponseException -igor On 2/15/07, Manu [EMAIL PROTECTED] wrote: Hallo, I have this web-flow sequences (two branches to the same leaf): [web-flow 1] WebPage1 WebPage2 [+Applet] WebPage3 [web-flow 2] WebPage1B

Re: [Wicket-user] WAP interfaces?

2007-02-15 Thread Igor Vaynberg
i dont see why not. wicket's core is not tied to xml not html - it is basically a glorified templating engine. you might have to build your own components for ones that are different between html and wap. -igor On 2/15/07, Jesse Barnum [EMAIL PROTECTED] wrote: Could I use Wicket to build a

Re: [Wicket-user] Relative URL-s on the page stop working after HTTP POST

2007-02-15 Thread Igor Vaynberg
what happens if there is an error? how does wicket redirect back to that page? how is that back url generated? -igor On 2/15/07, beboris [EMAIL PROTECTED] wrote: After 2 months of working with Wicket we almost felt like profies but now that we have to [loosely] integrate some pieces

Re: [Wicket-user] Version1 and Page expired despite setVersioned(false) call in a WebPage constructor

2007-02-15 Thread Igor Vaynberg
best thing to do is to replicate it in a quickstart -igor On 2/15/07, beboris [EMAIL PROTECTED] wrote: We have a central WebPage, which is not supposed to be versioned. So, we call setVersioned(false) in all constructors for that WebPage, and Wicket, indeed, has only one version for that

Re: [Wicket-user] Relative URL-s on the page stop working after HTTP POST

2007-02-15 Thread Igor Vaynberg
mount the page using querystringcodingstrategy that way the link will be /index.html?wicket:pagemap... -igor On 2/15/07, beboris [EMAIL PROTECTED] wrote: Nothing happens. We stay on the same HomePage and display an error. Unfortunately, Wicket changes URL of the page though, so relative

Re: [Wicket-user] NPE in Page#componentStateChanging

2007-02-14 Thread Igor Vaynberg
it would be helpful to know the version -igor On 2/14/07, Aaron HIniker [EMAIL PROTECTED] wrote: When doing an ajax update on a MarkupContainer containing a listview.. I am replacing the listview model before the update: java.lang.NullPointerException at

Re: [Wicket-user] AjaxFallbackDefaultDataTable (2.0) - how to update table when item is added or deleted

2007-02-14 Thread Igor Vaynberg
you have to update the whole table. there is nothing draconian about it because any other row may or may not be there after the update - other users might be adding/removing things to the table as well. -igor On 2/14/07, De Soca [EMAIL PROTECTED] wrote: Hello, I know that there must be an

Re: [Wicket-user] Form submitted normally and via AJAX? (Wicket 1.2.5)

2007-02-14 Thread Igor Vaynberg
i thought you wanted to handle it the same way so why do you need to know if the processing is ajax or regular request? -igor On 2/14/07, Charlie Dobbie [EMAIL PROTECTED] wrote: Hi all, In my Databinder-using application I have the requirement to create/edit entities both within a standard

Re: [Wicket-user] render to file?

2007-02-14 Thread Igor Vaynberg
to know it as well! * * Date: Sun, 11 Feb 2007 14:08:16 -0800 From: Igor Vaynberg Subject: Re: [Wicket-user] render to file? To: wicket-user@lists.sourceforge.net Message-ID: [EMAIL PROTECTED] Content-Type: text/plain; charset=iso-8859-1 does wget keep the cookie for session tracking? -igor

Re: [Wicket-user] custom serialization problem

2007-02-14 Thread Igor Vaynberg
he is using long conversations, so he keeps the hib session and then reconnects it on the next request. at least thats what it sounds like -igor On 2/14/07, Johan Compagner [EMAIL PROTECTED] wrote: But that is wrong. Use the detach() methods to clean up that. You shouldn't keep any database

Re: [Wicket-user] Table with varrying number of columns

2007-02-14 Thread Igor Vaynberg
http://wicketstuff.org/wicket13/repeater/?wicket:bookmarkablePage=Awicket.examples.repeater.DataTablePage -igor On 2/14/07, Ingo Adler [EMAIL PROTECTED] wrote: Hi, I have to show a table where the number of columns and their titles are not known at design time. They're calculated at

Re: [Wicket-user] JS Error: Object expected - but only with wicket 1.2.5

2007-02-14 Thread Igor Vaynberg
there is a vote on dev to commit a patch that is supposed to fix this. give it a try and let me know if it worked for you. -igor On 2/14/07, Ingram Chen [EMAIL PROTECTED] wrote: I also experience the same problem after upgrade 1.2.3 - 1.2.5 wicket-ajax.js is missing after several ajax

Re: [Wicket-user] Wicket 2.0 example for GridView is broken

2007-02-13 Thread Igor Vaynberg
gridview doesnt yet work with 2.0 because we still havent decided on how to do reparenting -igor On 2/13/07, Otan [EMAIL PROTECTED] wrote: [ Wicket 2.0 ] I can't make my GridView to work as I expect it to behave. It's javadoc seems outdated yet. Can someone fix the Wicket-example for

Re: [Wicket-user] Eclipse environment

2007-02-13 Thread Igor Vaynberg
i import individual subprojects instead of the entire thing cd wicket mvn eclipse:eclipse done -igor On 2/13/07, ChuckDeal [EMAIL PROTECTED] wrote: How do the Wicket developers have their Eclipse environment setup? I have a SNAPSHOT project that I created from the svn tree (wicket 1.3).

Re: [Wicket-user] How to hid a complete tag?

2007-02-13 Thread Igor Vaynberg
do you want to hide just the tag or the entire component? -igor On 2/13/07, Conny Kühne [EMAIL PROTECTED] wrote: But without the setRenderBodyOnly() the div still gets rendered (and displayed). And that's what I wanted to avoid. You are pretty close :) You don't need the setRenderBodyOnly.

Re: [Wicket-user] like i18n only different

2007-02-13 Thread Igor Vaynberg
have you see session.setstyle() or component.getvariation() they allow you to use alternative markup so for example if you call session.setstyle(bar); when foo.java renders first foo_bar.html si tried and then foo.html variation is much the same but scoped to instances instead of session

Re: [Wicket-user] like i18n only different

2007-02-13 Thread Igor Vaynberg
. On 2/13/07, Igor Vaynberg [EMAIL PROTECTED] wrote: have you see session.setstyle() or component.getvariation () they allow you to use alternative markup so for example if you call session.setstyle(bar); when foo.java renders first foo_bar.html si tried and then foo.html variation

Re: [Wicket-user] Wicket 2.0 example for GridView is broken

2007-02-13 Thread Igor Vaynberg
its probably not a lot of work but we need to have a powwow to decide on semantics/sideeffects -igor On 2/13/07, Eelco Hillenius [EMAIL PROTECTED] wrote: On 2/13/07, Igor Vaynberg [EMAIL PROTECTED] wrote: gridview doesnt yet work with 2.0 because we still havent decided on how to do

Re: [Wicket-user] Mounting a package

2007-02-13 Thread Igor Vaynberg
PROTECTED] wrote: OK. But from where I could start? Thanks, Paolo On 2/12/07, Igor Vaynberg [EMAIL PROTECTED] wrote: no, access to files, within a package or not, is provided via shared resources. it should be pretty easy to write a resource to do what you want though. -igor On 2/12/07

Re: [Wicket-user] Unable to render resource stream Exception

2007-02-13 Thread Igor Vaynberg
to apply and test the answer given? Thanks again, Konstantinos - Original Message From: Igor Vaynberg [EMAIL PROTECTED] To: wicket-user@lists.sourceforge.net Sent: Saturday, January 27, 2007 1:17:45 AM Subject: Re: [Wicket-user] Unable to render resource stream Exception well i guess

Re: [Wicket-user] Unable to render resource stream Exception

2007-02-13 Thread Igor Vaynberg
s/websphere/weblogic/ -igor On 2/13/07, Igor Vaynberg [EMAIL PROTECTED] wrote: looks like a webspehere classloader problem. not sure how to help you since i dont have access to websphere. maybe you can tell it not to create that _wl_user_cls jar -igor On 2/5/07, Konstantinos Lazouras

Re: [Wicket-user] Simple CSS Link

2007-02-13 Thread Igor Vaynberg
what does the generated url look like? also you dont need a component for this if its a static ref, i think the following should work wicket:link link rel=Stylesheet type=text/css href=1.css/ /wicket:link -igor On 2/13/07, spencer.c [EMAIL PROTECTED] wrote: Alright, I'm having trouble with

Re: [Wicket-user] Simple CSS Link

2007-02-13 Thread Igor Vaynberg
is the css file actually copied into the output folder? i know eclipse and other ides do not always copy css/html files by default. -igor On 2/13/07, spencer.c [EMAIL PROTECTED] wrote: The generated HTML is: link href=resources/com.test.pages.Share/1.css rel=stylesheet type=text/css

Re: [Wicket-user] Simple CSS Link

2007-02-13 Thread Igor Vaynberg
could you create a quickstart with the jars you are using and attach it to jira, that way i can take a look and debug it - unless you want to trace it yourself. btw what version of wicket are you using? -igor On 2/13/07, spencer.c [EMAIL PROTECTED] wrote: Yes, that was one of the first

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

2007-02-13 Thread Igor Vaynberg
in 1.x or 2.x -igor On 2/13/07, Jesse Barnum [EMAIL PROTECTED] wrote: I don't have a WicketFilter in my wicket-1.2.5.jar. Where would I find this? --Jesse Barnum, President, 360Works http://www.360works.com (770) 234-9293 On Feb 13, 2007, at 8:48 AM, Martijn Dashorst wrote: Use the

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

2007-02-13 Thread Igor Vaynberg
On Feb 13, 2007, at 5:59 PM, Eelco Hillenius wrote: On 2/13/07, Igor Vaynberg [EMAIL PROTECTED] wrote: in 1.x or 2.x Where 1.x stands for the name for the branch and Wicket version 1.3 and up. Eelco -- --- Using Tomcat

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

2007-02-13 Thread Igor Vaynberg
poller: http://papernapkin.org/pastebin/view/4610 example usage http://papernapkin.org/pastebin/view/4611 -igor On 2/13/07, Martijn Dashorst [EMAIL PROTECTED] wrote: On 2/14/07, Scott Lusebrink [EMAIL PROTECTED] wrote: the situation is that I have a page which takes a LONG time to get

Re: [Wicket-user] help urgent

2007-02-13 Thread Igor Vaynberg
of course if you clear out cookies while in the middle of a session you will get a page expired page. this is because the container can no longer find the session since the cookie is gone. -igor On 2/13/07, ketan gote [EMAIL PROTECTED] wrote: hello friends there is problem in wicket

Re: [Wicket-user] MarkupWriter

2007-02-12 Thread Igor Vaynberg
in wicket you very very very very rarely output markup from your code. why do you need this? -igor On 2/12/07, Robert . [EMAIL PROTECTED] wrote: Hi, I have been using Tapestry before and kinda enjoyed using the IMarkupWriter by doing things like writer.begin(div); writer.attribute(id, abc);

Re: [Wicket-user] Mounting a package

2007-02-12 Thread Igor Vaynberg
no, access to files, within a package or not, is provided via shared resources. it should be pretty easy to write a resource to do what you want though. -igor On 2/12/07, Paolo Di Tommaso [EMAIL PROTECTED] wrote: Is it possible to use WebApplication#mount(java.lang.String path, PackageName

Re: [Wicket-user] Problem restarting application in Tomcat

2007-02-12 Thread Igor Vaynberg
On 2/12/07, Rüdiger Schulz [EMAIL PROTECTED] wrote: Simply restarting tomcat solves this, but doing this with every redploy is a little tedious :( And I just changed from Jboss to Tomcat because I hoped I could speed up development... OT but if you want real speedy development try using

Re: [Wicket-user] Who is using Wicket under production environment?

2007-02-12 Thread Igor Vaynberg
not sure why it was locked...i unlocked. -igor On 2/12/07, Erik van Oosten [EMAIL PROTECTED] wrote: That page is not editable. How can I add another Wicket app? Erik. Matthes R. wrote: check this out: http://cwiki.apache.org/WICKET/#Index-SitesusingWicket greets, Matthes -- Erik

Re: [Wicket-user] datetime - DateTextField

2007-02-12 Thread Igor Vaynberg
sure, blame the tool -igor On 2/12/07, Eelco Hillenius [EMAIL PROTECTED] wrote: Also note that forShortStyle(String, IModel) has an inconsistent return type as compared to the seven other static methods. Why the choice to return ITextFormatProvider instead of DateTextField? Heh. Letting

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

2007-02-12 Thread Igor Vaynberg
i think this is actually a firebug bug :) try with it disabled -igor On 2/12/07, karthik Guru [EMAIL PROTECTED] wrote: Hi Matej, Here is something that I observed in FireBug - = t has no properties stateChangeCallback()wicket-ajax.js

Re: [Wicket-user] Page class instanciation in a tree navigated application

2007-02-11 Thread Igor Vaynberg
On 2/11/07, Natto Lover [EMAIL PROTECTED] wrote: My questions are: (1) Can I create URLs without instantiating the page objects? wicket has bookmarkable pages ( a page that has a default constructor or page(PageParameters) constructor ). you can create a url for this page without creating

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

2007-02-11 Thread Igor Vaynberg
one domain object. Is this a common situation? or is it avoided somehow? Date: Sun, 11 Feb 2007 00:34:29 -0800 From: Igor Vaynberg [EMAIL PROTECTED] Subject: Re: [Wicket-user] Page class instanciation in a tree navigated application To: wicket-user@lists.sourceforge.net Message-ID

Re: [Wicket-user] render to file?

2007-02-11 Thread Igor Vaynberg
does wget keep the cookie for session tracking? -igor On 2/11/07, Francisco Treacy [EMAIL PROTECTED] wrote: Hi all, Is there a possibility to render a Wicket page to a file instead to the browser? In fact, i need to make an 'HTML offline export' of all products stored in database... how

Re: [Wicket-user] Hotswap application

2007-02-11 Thread Igor Vaynberg
we dont use any fancy launchers here, just this https://svn.apache.org/repos/asf/incubator/wicket/branches/wicket-1.x/wicket-examples/src/main/java/wicket/examples/StartExamples.java debug that as a java application, include a jetty dependency and you are ready to go. -igor On 2/11/07, Jesse

Re: [Wicket-user] Adding more roles to wicket-auth-roles

2007-02-11 Thread Igor Vaynberg
i dont know if its worth doing this. the truth of the matter is that most apps have very different authorization schemes. i think what you will end up doing is creating something so generic it is convoluted, take a look at acegi - they tried to do that. i think we are better off with a concise

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

2007-02-10 Thread Igor Vaynberg
i remember there was a discussion about this...embedding wicket pages in iframes. and i believe the deal was that IE doesnt pass the cookies to the iframe so it cannot find the session on a submit. you have to enable url rewriting i guess. -igor On 2/10/07, Carfield Yim [EMAIL PROTECTED]

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

2007-02-10 Thread Igor Vaynberg
: On 2/10/07, Igor Vaynberg [EMAIL PROTECTED] wrote: i remember there was a discussion about this...embedding wicket pages in iframes. and i believe the deal was that IE doesnt pass the cookies to the iframe so it cannot find the session on a submit. you have to enable url rewriting i guess. I see

Re: [Wicket-user] delete row and update view?

2007-02-09 Thread Igor Vaynberg
:49 -0800 From: Igor Vaynberg Subject: Re: [Wicket-user] delete row and update view? To: wicket-user@lists.sourceforge.net Message-ID: [EMAIL PROTECTED] Content-Type: text/plain; charset=iso-8859-1 actually you need to do nothing :) after onclick for your delete link is done

Re: [Wicket-user] FormComponentLabel.getFormComponent()

2007-02-09 Thread Igor Vaynberg
done, it was already so in 2.0 :) -igor On 2/9/07, ChuckDeal [EMAIL PROTECTED] wrote: Is there any argument against adding a getFormComponent method to FormComponentLabel? I am extending this class and it seems redundent for me to hold a reference in my object as well as the one in the

Re: [Wicket-user] question regarding component replacement

2007-02-09 Thread Igor Vaynberg
the replaced panel is held in a version of the page. as soon as that version is evicted from session panel1 can be garbage collected. if you are using the default 2.0 disk session store this happens after the next request. -igor On 2/9/07, Otan [EMAIL PROTECTED] wrote: Example (in Wicket

Re: [Wicket-user] 1.3/2.0 Snapshots?

2007-02-09 Thread Igor Vaynberg
http://wicketstuff.org/maven/repository/ -igor On 2/9/07, spencer.c [EMAIL PROTECTED] wrote: Since it seems like there are alot of recommendations toward using the 1.3 and/or 2.0 branches on new developments, I was wondering if it would be possible to start getting snapshots of those

<    5   6   7   8   9   10   11   12   13   14   >