IMHO, it would be nice if Java programmers could control this behavior with
a Java API.
On 5/25/07, Dipu <[EMAIL PROTECTED]> wrote:
At the moment with Wicket's auto complete list we need to scroll down to
select an option from the Autocomplete list.
It would be nice to have the first item
At a loss. I have been trying to locate my markup from the classpath to the
root web context. It appears to find the file(s0 but for a particular one I
get the following exception
WicketMessage: The component(s) below failed to render. A common problem is
that you have added a component in code b
Hello,
I'm new in wicket and I have next problem. My application uses bookmarkable
pages. Than I try to access to page with incorrect params set
(http://localhost:8080/index/ff/
) I've got the error :
java.lang.IllegalStateException: URL fragment has unmatched key/value pair: ff/
at
wicket.r
Yep. Depending on your renderStrategy (which by default is
REDIRECT_TO_BUFFER), Wicket issues redirects
(HttpServletResponse#sendRedirect), which are typically (or always?)
translated to 302s by the servlet container.
Eelco
On 5/25/07, Sean Sullivan <[EMAIL PROTECTED]> wrote:
>
> Question:
>
> Is
Reinout, could you please try putting:
org.apache.wicket.util.lang.Objects.setObjectStreamFactory(new
IObjectStreamFactory.DefaultObjectStreamFactory())
in your application's init method (or update to the latest Wicket snapshot)?
If the problem stays, it should give you a clearer message what is
Question:
Is Wicket setting the 302 response code for these HTTP requests? I am
seeing the 302 status code in all responses. (302
== SC_MOVED_TEMPORARILY)
Sean
On 5/25/07, Sean Sullivan <[EMAIL PROTECTED]> wrote:
Ok, I made the change to "home/" but I'm still having the same problem.
It looks like your page, or a model or component attached to that page
holds a reference to an object that cannot be serialized. That's a
no-no. Once a request has been processed, the pages are serialized and
stored in a cache in case the user needs to access them again via back
button.
On Fri,
Igor - I just replaced if (component != null) with if (component == null)
and it seems to work...
--
View this message in context:
http://www.nabble.com/Wicket-minis-%3A-use-of-Veil-tf3817418.html#a10807555
Sent from the Wicket - User mailing list archive at Nabble.com.
---
Hi there
Is it possible for someone to give me an example of how to implement a Veil
from the Wicket Minis contrib?
if I add a veil to a component I just get "java.lang.IllegalStateException:
This behavior is already bound to component..."
Looking at the source I see that if (component != null)
Hello all,
During ApacheCon earlier this month I first heard from Wicket.
My interest was aroused and the past few days I've been trying to get
started with wicket 1.3b1 (yes, choosing the latest stable version might
have been better, but hey, I like cutting edge ;)
So one of the things I have be
Consider also the solution we implemented in house to allow arbitrary
Wicket components in an external web page -- including of course a
JSP.
http://www.nabble.com/Wicket-and-embeddable-Ajax-components-tf3604793.html#a10084198
On 5/25/07, Bruno Borges <[EMAIL PROTECTED]> wrote:
> You can do it wi
I suppose their is currently some work on going on wicket support with
Netbeans
Here
http://www.netbeans.org/kb/55/quickstart-wicket-in-netbeans.html
i use it and its basic enough and i use it to train beginners in wicket
i believe a Good plugin for wicket in Netbeans will also boost adoption
So you'll be working on netbeans integration?
On Fri, 2007-05-25 at 12:23 -0400, cowwoc wrote:
> http://www.netbeans.org/kb/55/quickstart-tapestry-in-netbeans.html
>
> Would be nice to have similar integration for Wicket. It is especially
> nice how you get to specify Tapestry as a f
I think something like this already exists. Google for "netbeans wicket".
On 5/25/07, cowwoc <[EMAIL PROTECTED]> wrote:
http://www.netbeans.org/kb/55/quickstart-tapestry-in-netbeans.html
Would be nice to have similar integration for Wicket. It is
especially
nice how you get
http://www.netbeans.org/kb/55/quickstart-tapestry-in-netbeans.html
Would be nice to have similar integration for Wicket. It is especially
nice how you get to specify Tapestry as a framework your Web Project
uses and it then integrates nicely throughout.
Gili
signature.asc
Desc
Ok, I made the change to "home/" but I'm still having the same problem.
I am unable to visit the application homepage:
http://dev.foobar.com/wicketdemo/home
I've also tried http://dev.foobar.com/wicketdemo/home/ (trailing slash)
but it yields the same result.
I think that I am experiencing a
Ahh, I now understand your main trouble.
I think that we had this question on the list already, but can't remind how
it got solved... maybe our "god-of-code" Igor has an idea how ?
> -Ursprüngliche Nachricht-
> Von: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] Im Auftrag
> von Rüdige
You can do it with a runtime include
But watch out for conflicts between HTMLs and you will need to do some hacks
like substring code inside tag only. Something like that. Possible it
is, but isn't out of the box. :D
"Everything is possible."
[]'s
--
Bruno Borges
Summa Technologies Inc.
www.
Hi
I wont expect the above to be possible, but sometimes you just dont
know? Is it possible, currently we are including it via an iframe tag,
some say thats a bad way todo it...
Whats your 2 cents?
regards Nino
-
This SF.
We're beginning the gradual process of converting our app over to
wicket. Since there isn't time to recreate our navigation menu in
wicket right now, I tried including the menu JSP in the wicket page
using the technique at
http://herebebeasties.com/2007-03-01/jsp-and-wicket-sitting-in-a-tree/.
It
Hi, I'm new with Wicket framework and I have a little problem :
I have a list that contains Strings. Those strings can be a key in a map
that contains another list.
I want to
display the values of my list, and if the map contains a list2 for the key,
show the content of the list from the map too,
Hello,
2007/5/25, Korbinian Bachl <[EMAIL PROTECTED]>:
> Hi,
>
> i dont see the current problem but why dont you just go an easier way in
> using IndexedParamUrlCoding strategy?
>
> e.g:
>
> -> create 1 normal Wicket WebPage having a (PageParameters params) strategy
> -> mount that page in the ini
Hi,
i dont see the current problem but why dont you just go an easier way in
using IndexedParamUrlCoding strategy?
e.g:
-> create 1 normal Wicket WebPage having a (PageParameters params) strategy
-> mount that page in the init() using
mount(new IndexedParamUrlCodingStrategy("/images"));
Hi,
At the moment with Wicket's auto complete list we need to scroll down to
select an option from the Autocomplete list.
It would be nice to have the first item highlighted by default.
I tried changing selected to 0 where its declared and it didn't work for me.
On setting selected to 0 a do
> make a jira issue for this (if not already there) on the apache side (wicket
> sourceforge bug list got a bit lost)
?
> And attach a patch then we will apply that asap.
?
I am a wicket-user... remember? I can try registering this issue at
JIRA (send me instructions), but for the patch I have
Hi Kent,
Many thanks for the reply.
I tried swithching to 1.2.6 but still i am getting the same error.
Are you sure thats fixed in 1.2.6
I am using tomcat 5.5.17
Regards
Dipu
- Original Message -
From: "Kent Tong" <[EMAIL PROTECTED]>
To:
Sent: Friday, May 25, 2007 9:01 AM
Subject: Re
Hello all,
I have (or had) a problem with mounted Resources and an iserted
jsessionid. My goal is, as discussed here before:
http://www.nabble.com/Bookmarkable-images-tf3706668.html#a10383150, to
have dynamic image URLs with just slashes and no
question-mark-separated querystring, like this:
/ima
>i am not sure if the server team has changed that mode, but probably it
should be development mode is on production servers. Does it cause any
problem?
well, in developement mode the system is slower and memory problems could
occur sometimes (e.g.: just search in list for "too much open files
p
Look at the list of problems I have with a solution like this. I don't
want this in core, or extensions. At best in wicketstuff-minis
I'd prefer having an example on the site showing this as how to build
custom components yourself, instead of adding it to core.
Instead of giving someone a fish, t
Johan, Martijn,
Thanks for the explanation and the solutions. I understand the issues
now.
Unfortunately for a new comers such as me, the problems are not obvious
and we're trying to map all what we've done with the traditional
frameworks to Wicket and hence we land up in trouble. e.g I'm us
It would be great if you could list the sites at
http://cwiki.apache.org/WICKET/#Index-SitesusingWicket
Thanks ahead!
Eelco
On 5/25/07, Kadir Sener GUMUS <[EMAIL PROTECTED]> wrote:
> Hi Johan,
> as i said before, three leading technology has been used in the project;
> wicket,hibernate and spri
public abstract class LabelLink extends Link {
private IModel labelModel;
public LabelLink(String id, IModel linkModel, IModel labelModel) {
super(id, linkModel);
this.labelModel = labelModel;
}
protected void onComponentTagBody(MarkupStream markupStream,
Com
Dipu multicom.co.uk> writes:
> If i override the isVersioned method
> of the page and return false every thing works fine, i really have no clue
> about whats happening and whats causing the error. Has anyone seen this
> before ? Whats the best way to get around this ?
>
> I am using wicket
Hi Johan,
as i said before, three leading technology has been used in the project;
wicket,hibernate and spring. the all sites are served by wicket in one war
application. Additionally, a CMS application is used for html contents and
wicket dynamically injects dynamic components. Oh you might have
Thanks anyone... i get it
This is the solution :clap:
/*/
Public void onSubmit() {
..
..
exportRequestDetailsAsPdf(sqlField, sqlCondition, sqlOrderBy);
String report_name = "requestMaster_created_by_userid.pdf";
Hi all!
I've got the following problem:
I have a page and an internal frame on it. To operate on that internal frame
from the parent page, I have to keep reference to it in the parent page
(InternalFrame.class has private method to get its page).
It works but after the first load there are two in
36 matches
Mail list logo