stripping of wicket tags in html

2011-05-03 Thread madaan18
hey, When we add markup for some label.. we do as but what wicket does is it converts it into HTML like value I think it does this using write output function of class Component tag.. I just wanna know the complete flow it does to convert it into pure HTML.. Please help me for the same..

Re: stripping of wicket tags in html

2011-05-03 Thread madaan18
thanks Ernesto for reply.. I just wanna know how wicket handles the HTML files... HTML does not know about wicket id .. so it converts it to HTML .. how wicket does this??? please help.. Thanks in advance... -- View this message in context:

override writeoutput

2011-05-03 Thread madaan18
hey, I want to override the function writeoutput in ComponentTag.class but it is final.. is there some way that i can override it.. ~~ thanks in advance -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/override-writeoutput-tp3492086p3492086.html Sent from the Users

Re: override writeoutput

2011-05-03 Thread madaan18
this function actually strips the wicket tag.. and i want to add div also after stripping wicket tag.. so i need to override this function.. so how can i do this??? Please help.. -- Thanks in advance -- View this message in context:

Re: Back button problem in wicket

2011-04-29 Thread madaan18
Hi, Thanks for the help... problem is solved.. i integrated spring and wicket.. but a new problem has come.. it is saying me to serialize the service class although it is not affecting the problem of back button if i don't serialize but still throwing an exception.. I don't wanna serialize my

Back button problem in wicket

2011-04-28 Thread madaan18
Hey, I am new to wicket.. I was having problem of back button in wicket.. but it got solved when i made all the pages and service class serializable.. but when i integrated my project with spring configuration.. i again faced the problem of back button in my project.. why does it happen ??? is