Re: Dataview help

2014-06-13 Thread Martin Grigorov
  sam  21(link)
  ram   16(link)
 
  once i click the id it show the sam/ram details in next page. I have
  tried
  many ways to implement it using  simple data view , but not able to do.
  Hoping you for help on this.
  I have tried cwiki examples, wicket library examples but those are very
  long
  to understand.Can you please share a simple project similar to my
  requirement above. Please help me, am struggling for nearly three months
  on
  this.
 
  Thanks,
  Kumar
 
  --
  View this message in context:
  http://apache-wicket.1842946.n4.nabble.com/Dataview-help-tp4666151.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
 
 
 
 
  -
  ~ Thank you,
  p...@bors.ws
  ___
  If you reply to this email, your message will be added to the discussion
  below:
 
 http://apache-wicket.1842946.n4.nabble.com/Dataview-help-tp4666151p4666157.html
 
  To unsubscribe from Dataview help, visit
 
 http://apache-wicket.1842946.n4.nabble.com/template/NamlServlet.jtp?macro=unsubscribe_by_codenode=4666151code=a3VtYXJyYW1hbmF0aGFAZ21haWwuY29tfDQ2NjYxNTF8LTQ2Njc1NzExMg==


 --
 with regards,
 Kumar R M
 Save the Earth.She will take care of you


 --
 View this message in context:
 http://apache-wicket.1842946.n4.nabble.com/Dataview-help-tp4666151p4666161.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: Dataview help

2014-06-13 Thread kumar ramanathan
Hi Martin,I have used the link code as you have suggested as below and
getting the error at setBody(Model.of(person.getId()))* The method
setBody(Model) is undefined for the type new Link(){} *.Code
used:repeatingView.add(new Link(repeatingView.newChildId()) { 
public void onClick() {  setResponsePage(new Output()); 

}  }.setBody(Model.of(person.getId(;item.add(repeatingView);So i
have altered the code as below ,removed the .setbody part. But inoutput am
unable to get the link in Id column ofoutput.code
altered:repeatingView.add(new Link(repeatingView.newChildId()) { 
public void onClick() {  setResponsePage(new Output()); 

}  });item.add(repeatingView);O/p Got:Name IdSamRamNo values displayed
in id column as above. Please help me.

--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Dataview-help-tp4666151p4666255.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: Dataview help

2014-06-13 Thread Martin Grigorov
https://github.com/apache/wicket/blob/master/wicket-core/src/main/java/org/apache/wicket/markup/html/link/AbstractLink.java#L124
Try harder ;-)

I write the code in my mail client, so it may have errors.
Use your IDE to fix them!


Martin Grigorov
Wicket Training and Consulting


On Fri, Jun 13, 2014 at 4:59 PM, kumar ramanathan kumarramana...@gmail.com
wrote:

 Hi Martin,I have used the link code as you have suggested as below and
 getting the error at setBody(Model.of(person.getId()))* The method
 setBody(Model) is undefined for the type new Link(){} *.Code
 used:repeatingView.add(new Link(repeatingView.newChildId()) {
 public void onClick() {  setResponsePage(new Output());
 }  }.setBody(Model.of(person.getId(;item.add(repeatingView);So i
 have altered the code as below ,removed the .setbody part. But inoutput am
 unable to get the link in Id column ofoutput.code
 altered:repeatingView.add(new Link(repeatingView.newChildId()) {
 public void onClick() {  setResponsePage(new Output());
 }  });item.add(repeatingView);O/p Got:Name IdSamRamNo values displayed
 in id column as above. Please help me.

 --
 View this message in context:
 http://apache-wicket.1842946.n4.nabble.com/Dataview-help-tp4666151p4666255.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: Dataview help

2014-06-09 Thread Paul Bors
Have you tried one of the Repeaters from:
http://www.wicket-library.com/wicket-examples/index.html

Direct link:
http://www.wicket-library.com/wicket-examples/repeater/

They are also explained in the Wicket Free Guide at:
http://wicket.apache.org/guide/guide/single.html#repeaters

Let us know if you have a more specific question.


On Fri, Jun 6, 2014 at 9:29 AM, kumar ramanathan kumarramana...@gmail.com
wrote:

 Hi Friends,
 I am new beginner of wicket and trying to implement the table as below
 using
 data view.

 name id
 sam  21(link)
 ram   16(link)

 once i click the id it show the sam/ram details in next page. I have tried
 many ways to implement it using  simple data view , but not able to do.
 Hoping you for help on this.
 I have tried cwiki examples, wicket library examples but those are very
 long
 to understand.Can you please share a simple project similar to my
 requirement above. Please help me, am struggling for nearly three months on
 this.

 Thanks,
 Kumar

 --
 View this message in context:
 http://apache-wicket.1842946.n4.nabble.com/Dataview-help-tp4666151.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: Dataview help

2014-06-09 Thread kumar ramanathan

 --
 View this message in context:
 http://apache-wicket.1842946.n4.nabble.com/Dataview-help-tp4666151.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




 -
 ~ Thank you,
 p...@bors.ws
 ___
 If you reply to this email, your message will be added to the discussion
 below:
 http://apache-wicket.1842946.n4.nabble.com/Dataview-help-tp4666151p4666157.html

 To unsubscribe from Dataview help, visit
 http://apache-wicket.1842946.n4.nabble.com/template/NamlServlet.jtp?macro=unsubscribe_by_codenode=4666151code=a3VtYXJyYW1hbmF0aGFAZ21haWwuY29tfDQ2NjYxNTF8LTQ2Njc1NzExMg==


-- 
with regards,
Kumar R M
Save the Earth.She will take care of you


--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Dataview-help-tp4666151p4666161.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



Dataview help

2014-06-06 Thread kumar ramanathan
Hi Friends,
I am new beginner of wicket and trying to implement the table as below using
data view.

name id
sam  21(link)
ram   16(link)

once i click the id it show the sam/ram details in next page. I have tried
many ways to implement it using  simple data view , but not able to do.
Hoping you for help on this. 
I have tried cwiki examples, wicket library examples but those are very long
to understand.Can you please share a simple project similar to my
requirement above. Please help me, am struggling for nearly three months on
this.

Thanks,
Kumar 

--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Dataview-help-tp4666151.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