RE: override wicket mark up

2012-09-01 Thread ramlael
Thank you Paul..



--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/override-wicket-mark-up-tp4651624p4651687.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: override wicket mark up

2012-08-30 Thread ramlael
Hi Martin,

Once I call super(model) in extended class, its expecting markup
(wicket:ids) should be in same order.

Please can you provide sample code, how the replace or replaceWith will
work.

Regards,
Rambabu



--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/override-wicket-mark-up-tp4651624p4651640.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: override wicket mark up

2012-08-30 Thread ramlael
Hey Martin..
I need to override the component with different hierarchy, and need to
insert some container (in my case "adminGroupTabs") into the tree. Is it
possible?.

Regards,
Rambabu



--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/override-wicket-mark-up-tp4651624p4651635.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



override wicket mark up

2012-08-29 Thread ramlael
Hi Friends, 

I would like to override wicket page, will have same wicket id's with
different parent ids. 
Is it possible in wicket please help me... 

http://apache-wicket.1842946.n4.nabble.com/file/n4651624/wikcet-problem.png 

Regards,
Rambabu



--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/override-wicket-mark-up-tp4651624.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



Back/Forward buttons

2012-06-21 Thread ramlael
Hi,

I have requirement like...

Embed/include a wicket page in a third party jsp site ( with iframe ).
the use can navigate the page through the links but when the user hits
their browser’s back or   forward button within the current session to
arrive at the page that contains the iFrame we should not allow the user to
our Iframe.

Please suggest me how to handle this in Wicket.

I have try to send some variable on on-click to Iframe but the same
variable is coming on back/forward button also.

Regards,
Rambabu


--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Back-Forward-buttons-tp4650143.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: Not getting the Post Parameter values in Iframe (wicket Page)

2012-06-20 Thread ramlael
org.apache.wicket.protocol.http.WicketFilter

--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Not-getting-the-Post-Parameter-values-in-Iframe-wicket-Page-tp4650106p4650127.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: Not getting the Post Parameter values in Iframe (wicket Page)

2012-06-20 Thread ramlael
Hey... I solved the problem..


I have changed the form action action="http://localhost:8080/abc"; to
action="http://localhost:8080/abc/";   (added '/'  after abc)... now its
working fine.


thank you very much.

--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Not-getting-the-Post-Parameter-values-in-Iframe-wicket-Page-tp4650106p4650125.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: Not getting the Post Parameter values in Iframe (wicket Page)

2012-06-20 Thread ramlael
Hi, I didn't get you.. what r u saying.. shall I add all the pages to JIRA?

--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Not-getting-the-Post-Parameter-values-in-Iframe-wicket-Page-tp4650106p4650122.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: Not getting the Post Parameter values in Iframe (wicket Page)

2012-06-20 Thread ramlael
Yes... the post values are submitted. I have checked in firefox debugger

Parametersapplication/x-www-form-urlencoded
firstName   ram
lastNamebabu
memberId1234
name
parenttoken 123456
sumbit  Submit Query

--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Not-getting-the-Post-Parameter-values-in-Iframe-wicket-Page-tp4650106p4650120.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: Not getting the Post Parameter values in Iframe (wicket Page)

2012-06-20 Thread ramlael
HI

JSP and Wikcet Iframe running on different server. 

The JAVA Code
public class abc extends WebPage {

public abc(final PageParameters parameters) {
logger.debug("+ "+
parameters.getIndexedCount());
logger.debug("+"+getRequest().getPostParameters().getParameterNames());
}

}

--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Not-getting-the-Post-Parameter-values-in-Iframe-wicket-Page-tp4650106p4650108.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



Not getting the Post Parameter values in Iframe (wicket Page)

2012-06-20 Thread ramlael
Hi,
 
I have embed/include a wicket page in a third party jsp site ( with iframe )
and  on form submit the jsp sending the values to iframe through post
method.

I need to get those values in wicket page, I have used pageparameters and
getRequest().getPostParameters().getParameterNames() but no luck.

Please can you help me on this.
 

Code : 
Third Party Jsp

http://localhost:8080/abc"; name="myform" target="my-iframe"
method="POST" >







 http://localhost:8081/abc";>


Kind regards
Rambabu

--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Not-getting-the-Post-Parameter-values-in-Iframe-wicket-Page-tp4650106.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: CompoundPropertyModel problem.. the values are not refreshing

2012-06-14 Thread ramlael
Wicket 1.5

--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/CompoundPropertyModel-problem-the-values-are-not-refreshing-tp4649987p464.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: CompoundPropertyModel problem.. the values are not refreshing

2012-06-14 Thread ramlael
1) In form have 2 text fields, 1) First Name and 2) Last Name. On page load
populating the values with request parameters like
https:localhost:8080/addcard?firstName=ram&lastName=babu.  after loading the
page with first name and last name field, modified the first name text field
with "raj" , clicked submit button. got the error on page ( have some
mandatory fields in the page) and displayed the error on feed back panel but
the first name text field changed to old value (ram). it should be raj... 


2) after loading the page withurl
https:localhost:8080/addcard?firstName=ram&lastName=babu . I have changed
the URL like https:localhost:8080/addcard?firstName=ravi&lastName=babu in
same browser and clicked enter but the first name text field value
populating with old value ram not with ravi.

--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/CompoundPropertyModel-problem-the-values-are-not-refreshing-tp4649987p4649993.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



CompoundPropertyModel problem.. the values are not refreshing

2012-06-14 Thread ramlael
Below are my files 

HTML 
  
 

Bean 
Customer.java  - getters/setters for firstName and lastname 

Component.java  - On URL getting the firstname and lastNames as page
parameters 
Customer customer = new Customer(); 
CompoundPropertyModel compoundPropertyModel = new
CompoundPropertyModel(customer ); 
final Form addCardForm= new
Form("addCardForm",compoundPropertyModel); 

customer.setFirstName(parameters.get("firstName").toString()); 
customer.setLastName(parameters.get("lastName").toString()); 

final TextField firstName = new TextField("firstName"); 
final TextField lastName = new TextField("lastName"); 
addCardForm.add(firstName ); 
addCardForm.add(lastName); 
add(addCardForm); 


Here the Problems: 

1) Once I load the file with URL :
localhost:8080/addcard?firstName=ram&lastName=babu, the first name and last
name displaying fine but if I change the firstName and lastName in same
browser URL like localhost:8080/addcard?firstName=ravi&lastName=suri, the
old values(ram,babu) only displaying in form fields(First Name and Last
Name) 

2) The form has AjaxSubmitLink- once I load the page with ram and babu,
changed the first name ram to raj, and clicked submit button. if the page
has any error the error message is writing to feed back panel but the First
name is changing to old value that is ram. 

Is It problem with CompoundPropertyModel or cache probelm.. please suggest
me the solution.

--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/CompoundPropertyModel-problem-the-values-are-not-refreshing-tp4649987.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: Generate PDF

2011-07-13 Thread ramlael
I have requirement like, the 'pdf'/'html url' coming from web services, 
based on condition I need to display pdf/html in new window, if I use normal
Link, not able to open the html in different window, if its ajax link I can
add java script for opening in new window.

Regards,
Rambabu 

--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Generate-PDF-tp3651354p3665128.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: Generate PDF

2011-07-13 Thread ramlael
Hi, its working fine with normal link, but not with ajax link, any idea about
this problem?

--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Generate-PDF-tp3651354p3665040.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



Generate PDF

2011-07-07 Thread ramlael
Hi Friends,

I have requirement need to generate pdf with string data which is in byte
stream and need to open in new window (pop up).  I have used below code ,
but its displaying in same window, not in pop up.. please can you help me on
this.

  public void downloadPdf(RequestCycle requestCycle, final String
eStatement, String filename) {
   
final WebResponse webResponse = (WebResponse)
requestCycle.getResponse();
webResponse.setContentType("APPLICATION/PDF");
webResponse.setHeader("Content-Disposition", "inline; filename=\"" +
filename + "\"");
requestCycle.setRequestTarget(new IRequestTarget() {

public void respond(RequestCycle requestCycle) {
try {

OutputStream stream = webResponse.getOutputStream();
OutputStreamWriter writer = new
OutputStreamWriter(stream, "ISO-8859-1");
writer.write(eStatement);
   writer.flush();
writer.close();
} catch (IOException ex) {
ex.printStackTrace();
}
}

public void detach(RequestCycle requestCycle) {
}

});
}
  

Thanks in advance
Rambabu

--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Generate-PDF-tp3651354p3651354.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: Not closing the datepicker upon clicking outside

2011-07-07 Thread ramlael
HI Andrea ,

Do you have any idea, how to do in Wicket?


--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Not-closing-the-datepicker-upon-clicking-outside-tp3648593p3651340.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: Not closing the datepicker upon clicking outside

2011-07-07 Thread ramlael
Refer this URL for plain YUI :
http://developer.yahoo.com/yui/examples/calendar/calcontainer.html  

--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Not-closing-the-datepicker-upon-clicking-outside-tp3648593p3651222.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: Not closing the datepicker upon clicking outside

2011-07-07 Thread ramlael
refer this site for plan YUI :
http://developer.yahoo.com/yui/examples/calendar/calcontainer.html  

--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Not-closing-the-datepicker-upon-clicking-outside-tp3648593p3651221.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: Not closing the datepicker upon clicking outside

2011-07-07 Thread ramlael
Please suggest me on this... 

--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Not-closing-the-datepicker-upon-clicking-outside-tp3648593p3651028.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: Not closing the datepicker upon clicking outside

2011-07-06 Thread ramlael
Hi,

Please can you help me, how to configure this in Wicket. I know how to
configure with exising YUI widgets, but there is no widget available for
"click". Do I need to create widget or is there any way to configure this.

Regards,
Rambabu 

--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Not-closing-the-datepicker-upon-clicking-outside-tp3648593p3648968.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



Not closing the datepicker upon clicking outside

2011-07-06 Thread ramlael
Hi, 

I have used the datepicker component in my application and it works great.
But currently when I click the icon attached with the datetextfield, it
opens up the datepicker, and if I click on a text box or anyother form
element outside the calendar, the popup remains opens still open and allows
the user to do operations on the background elements in the page.  I would
seriously like to solve this issue, by either using any functions already
available in the jar or by customizing it to a new class. Any pointers on
how to achieve this would be greatly appreciated.  My requirement would be
close the datepicker upon clicking outside it. 
Please help.

Thanks in advance.

--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Not-closing-the-datepicker-upon-clicking-outside-tp3648593p3648593.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



Date Picker issue

2011-07-06 Thread ramlael
Hi,
Mouse out of any date box, the date picker should disappear, but I used
apache wicket date picket, its not closing once the mouse out after opening
the date picker. Please help me on this.

Thanks in advance.

--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Date-Picker-issue-tp3647913p3647913.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



Date Picker issue

2011-07-05 Thread ramlael
Hi,

I am facing issue with DatePicker, needs to close the datepicker once the
mouse out from the Date text box.


The requirement : Screen has two date text boxes (From Date and To Date) ,
if the user click "from date" datepicker and next he clicks "to date" Date
picker, the from date picker has to close and todate date picker has to open
but here the from date picker remains open, its not closing.  Please help
me, how to solve this problem.

Thanks in advance.



--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Date-Picker-issue-tp3647831p3647831.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: Expandable row in datatable

2011-05-30 Thread ramlael
Hi Josh,
Please can you send the code by using datatable?.

Thanks in advance.


--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Expandable-row-in-datatable-tp1883838p3560822.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: Expandable row in datatable

2011-05-30 Thread ramlael
I need to use Datatable, bcoz need sorting for the columns. 

Regards,
Rambabu

--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Expandable-row-in-datatable-tp1883838p3560606.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: How to show / hide individual column of a DefaultDataTable using Ajax?

2011-05-30 Thread ramlael
I need som help with how to create an expandable row in a datatable. The 
idea would be to have functionality like an accordion where you click the 
table row and it expands to show more details of the object in the current 
row. 


U have mentioned "This is working fine for the table content (data rows) ",
Please can you provide the code?. 

--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/How-to-show-hide-individual-column-of-a-DefaultDataTable-using-Ajax-tp2275208p3560116.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: Expandable row in datatable

2011-05-30 Thread ramlael
Is any one know the solution?.

--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Expandable-row-in-datatable-tp1883838p3560106.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: Expandable row in datatable

2011-05-27 Thread ramlael
Hey.. I am also looking for same kind of solution.. is any one have idea
about this problem.

 


--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Expandable-row-in-datatable-tp1883838p3555020.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: Datatable - Inserting new row when I click on master row

2011-05-27 Thread ramlael
I think, you are not understand my problem correctly... I need to insert
dynamic row (Credit card information) below to Userinformation row, based on
user click ( on credit card number). 

--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Datatable-Inserting-new-row-when-I-click-on-master-row-tp3554625p3554806.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: Datatable - Inserting new row when I click on master row

2011-05-27 Thread ramlael
Please can you help me.. how to implement?.. give me some idea..

--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Datatable-Inserting-new-row-when-I-click-on-master-row-tp3554625p3554684.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



Datatable - Inserting new row when I click on master row

2011-05-27 Thread ramlael
Hi Friends,

I want  to  insert new row with column spanning on master row click 

My datatable have Users details (like username,phone number, credit card
number), when the user click on credit card number, I need to show the
credit card information below to user details row.

Please can you suggest, how to implement this.


Thank you
Rambabu

--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Datatable-Inserting-new-row-when-I-click-on-master-row-tp3554625p3554625.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