Wicket examples in new version

2011-08-09 Thread marcelp
Hello,

I ran the wicket examples in my Eclipse without any problems (after
importing as Maven project from the src/wicket-examples). The wicket version
here is appearantly 1.4.17.

In my project at work we have the latest wicket version
wicket.version1.5-RC5.1/wicket.version

Now, here do some of the examples not work. For example the repeater example
has a file called DatabaseLocater.java. here I get import
org.apache.wicket.RequestCycle cannot be resolved.

What can I do to get the examples work in the latest version?

--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Wicket-examples-in-new-version-tp3729204p3729204.html
Sent from the Users forum mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Wicket examples in new version

2011-08-09 Thread marcelp
Hi Sven,

You are right. I did mix them up. I got it compiling now but I get runtime
exceptions. I might come back ;-0 Thanks for the hint.


--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Wicket-examples-in-new-version-tp3729204p3729516.html
Sent from the Users forum mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Wicket examples in new version

2011-08-09 Thread marcelp
Hmm, I can't seem to get to the problem myself.

Last cause: Failed to find markup file associated. ActionPanel: [ActionPanel
[Component id = actions]]

Root cause:org.apache.wicket.markup.MarkupNotFoundException: Failed to find
markup file associated. ActionPanel: [ActionPanel [Component id = actions]]
at
org.apache.wicket.markup.html.panel.PanelMarkupSourcingStrategy.getMarkup(PanelMarkupSourcingStrategy.java:63)

at org.apache.wicket.MarkupContainer.getMarkup(MarkupContainer.java:464)
at
org.apache.wicket.MarkupContainer.renderAssociatedMarkup(MarkupContainer.java:669)

at
org.apache.wicket.markup.html.panel.PanelMarkupSourcingStrategy.onComponentTagBody(PanelMarkupSourcingStrategy.java:50)

at org.apache.wicket.Component.internalRenderComponent(Component.java:2584)
at org.apache.wicket.MarkupContainer.onRender(MarkupContainer.java:1537)

etc

The SimplePage from the examples has the problem. 
Java:

item.add(new ActionPanel(actions, item.getModel()));

HTML:
td[actions]/td

The BasePage.java has a class 

class ActionPanel extends Panel
{
/**
 * @param id
 *component id
 * @param model
 *model for contact
 */
public ActionPanel(String id, IModelContact model)
{
super(id, model);
add(new Link(select)
{
@Override
public void onClick()
{
selected = 
(Contact)getParent().getDefaultModelObject();
}
});
}
}

Anyone got any ideas?

--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Wicket-examples-in-new-version-tp3729204p3729627.html
Sent from the Users forum mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Wicket examples in new version

2011-08-09 Thread marcelp
THe HTML code got deleted in previous message. Should read:span
wicket:id=actions [actions] with brackets

--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Wicket-examples-in-new-version-tp3729204p3729633.html
Sent from the Users forum mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Wicket examples in new version

2011-08-09 Thread marcelp
Hi martin,

Like i said in my first post, when I import as Mavenproject then it works
fine. When I copy and paste some of the files from the examples to my true
project (like what i am doing with the simplepage because I need this
exactly) it doesn't work completely. What I first noticed is that some code
from the examples needed changes. Contructors had different parameters for
example.

So now I have ths problem with Actionpanel

Last cause: Failed to find markup file associated. ActionPanel: [ActionPanel
[Component id = actions]] 

When I change my code from SimplePage.java

item.add(new ActionPanel(actions, item.getModel())); 


into 

item.add(new Label(actions,  Select));

it does work, however it has no click functionality obviously.


--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Wicket-examples-in-new-version-tp3729204p3729678.html
Sent from the Users forum mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org