Re: Errors in data view , req for help to fix the error in code

2014-05-29 Thread Martin Grigorov
}; > > // > > > add(form); > } > > * the error am getting is "unable to find wicket Id : row " * > > Thanks, > Kumar Ramanath

Re: Errors in data view , req for help to fix the error in code

2014-05-29 Thread kumar ramanathan
: row " * Thanks, Kumar Ramanathan -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Errors-in-data-view-req-for-help-to-fix-the-error-in-code-tp4666025p4666056.html Sent from the Users forum mailing list archive at Nabble.com.

Re: Errors in data view , req for help to fix the error in code

2014-05-28 Thread kumar ramanathan
item.add(repeatingView); } }; add(dataView); } }; // add(form); } -- View this message in context: http://apache-wicket.1842946.n

Re: Errors in data view , req for help to fix the error in code

2014-05-27 Thread Martin Grigorov
View this message in context: > http://apache-wicket.1842946.n4.nabble.com/Errors-in-data-view-req-for-help-to-fix-the-error-in-code-tp4666025p4666041.html > Sent from the Users forum mailing list archive at Nabble.com. > > --

Re: Errors in data view , req for help to fix the error in code

2014-05-27 Thread kumar ramanathan
org.apache.wicket.markup.repeater.data.DataView.(DataView.java:81)Can you please tell how to put the data view code in the form while constructing itself . If possible please give some example. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Errors-in-data-view-req-for-help-to-fix-the-error-in-code

Re: Errors in data view , req for help to fix the error in code

2014-05-27 Thread Martin Grigorov
add(dataView); > } > }; > > add(form); > } > > Html page: > > > > > > > > > Id > Name > > > > > > > > > -- > View this message in context: > http://apache-wicket.1842946.n4.nabble.com/

Re: Errors in data view , req for help to fix the error in code

2014-05-27 Thread kumar ramanathan
ntext: http://apache-wicket.1842946.n4.nabble.com/Errors-in-data-view-req-for-help-to-fix-the-error-in-code-tp4666025p4666039.html Sent from the Users forum mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-

Re: Errors in data view , req for help to fix the error in code

2014-05-27 Thread Martin Grigorov
od in dataview component . The > data view scope is not accessible. It throwed the error. > > While using inside submit method , how we could make the scope accessible > and resolve this problem. > > > > -- > View this message in context: > http://apache-wicket.1842946

Re: Errors in data view , req for help to fix the error in code

2014-05-27 Thread kumar ramanathan
accessible and resolve this problem. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Errors-in-data-view-req-for-help-to-fix-the-error-in-code-tp4666025p4666037.html Sent from the Users forum mailing list archive at Nabble.com

Re: Errors in data view , req for help to fix the error in code

2014-05-27 Thread Martin Grigorov
rkup = > > file:/home/kumar/Documents/javaapplications/Eclipse_Workspace/.metadata/.plugins/org.eclipse.wst.server.core/tmp0/wtpwebapps/demo/WEB-INF/classes/com/demo/pages/DemoHomePage.html > > > I have used row in the submit method , but the wicket is not able to find > since D

Re: Errors in data view , req for help to fix the error in code

2014-05-27 Thread kumar ramanathan
. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Errors-in-data-view-req-for-help-to-fix-the-error-in-code-tp4666025p4666033.html Sent from the Users forum mailing list archive at Nabble.com. -

Re: Errors in data view , req for help to fix the error in code

2014-05-27 Thread Martin Grigorov
abel) > b. The constructor Label(String, String) is undefined > > these are the two errors.please help. > > -- > View this message in context: > http://apache-wicket.1842946.n4.nabble.com/Errors-in-data-view-req-for-help-to-fix-the-error-in-code-tp4666025p4666030.html >

Re: Errors in data view , req for help to fix the error in code

2014-05-27 Thread kumar ramanathan
-for-help-to-fix-the-error-in-code-tp4666025p4666030.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

Re: Errors in data view , req for help to fix the error in code

2014-05-27 Thread Martin Grigorov
che-wicket.1842946.n4.nabble.com/Errors-in-data-view-req-for-help-to-fix-the-error-in-code-tp4666025p4666027.html > Sent from the Users forum mailing list archive at Nabble.com. > > - > To unsubscribe, e-mail: users-unsu

Re: Errors in data view , req for help to fix the error in code

2014-05-27 Thread Francois Meillet
View.add(new > Label(repeatingView.newChildId(),* > bean.getName()));* > > -- > View this message in context: > http://apache-wicket.1842946.n4.nabble.com/Errors-in-data-view-req-for-help-to-fix-the-error-in-code-tp4666025p4666027.html > Sent from the User

Re: Errors in data view , req for help to fix the error in code

2014-05-27 Thread kumar ramanathan
Label(repeatingView.newChildId(),* bean.getName()));* -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Errors-in-data-view-req-for-help-to-fix-the-error-in-code-tp4666025p4666027.html Sent from the Users forum mailing list archive at Nabble.com

Re: Errors in data view , req for help to fix the error in code

2014-05-26 Thread Francois Meillet
he type MarkupContainer is not applicable > for the arguments (Label) > > DemoBean.java > > package com.demo.pages; > > public class DemoBean { > public String id; > public String name; > > public DemoBean(String id,String name) > { > this.id=id;this.name=name; &g

Errors in data view , req for help to fix the error in code

2014-05-26 Thread kumar ramanathan
lic String getName(){ return this.name; } public void setName(String name){ this.name=name; } } -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Errors-in-data-view-req-for-help-to-fix-the-error-in-code-tp466