Re: Newbie question: startup wicketapplication with loginform

2013-11-26 Thread Seçil Aydın
Hi,
you can also view the below example code:

http://www.wicket-library.com/wicket-examples/authentication1/wicket/bookmarkable/org.apache.wicket.examples.authentication1.SignIn?0



-
Wicket-Java
--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Newbie-question-startup-wicketapplication-with-loginform-tp4662641p4662685.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



Username Password are shown in AddressBar on Internal Server Error

2013-01-31 Thread Seçil Aydın
Hi,
we have a wicket based system. When user wants to login at our login page
and server gives internal server error, user's username and password are
shown on the address bar of the user's browser.

What can i do to hide these information?
I need some recommendation.

With my best regards.
Secil



-
Wicket-Java
--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Username-Password-are-shown-in-AddressBar-on-Internal-Server-Error-tp4655954.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: Username Password are shown in AddressBar on Internal Server Error

2013-01-31 Thread Seçil Aydın
I mean by address bar url contains 

http://www.example.com/some/path%dfusername=xxxpassword=skjkdoLogin





-
Wicket-Java
--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Username-Password-are-shown-in-AddressBar-on-Internal-Server-Error-tp4655954p4655958.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: AjaxFormValidatingBehavior Submits Form When I Clicked Submit Button second Time

2012-02-29 Thread Seçil Aydın
I have fixed my problem, thank you for your attention.

With my best regards.
Secil

-
Wicket-Java
--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/AjaxFormValidatingBehavior-Submits-Form-When-I-Clicked-Submit-Button-second-Time-tp4410686p4431285.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: TextField update According to Another TextField update

2012-02-29 Thread Seçil Aydın
Thanks Martin,
I think it is the same think with OnChangeAjaxBehavior.Is not it?

-
Wicket-Java
--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/TextField-update-According-to-Another-TextField-update-tp4431324p4431602.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: DateTextField Problem

2012-01-12 Thread Seçil Aydın
I think this is a bug of a wicket so I have added an extra validation to date
component when user clicks on submit button.
This is not the best solution but it is worked.

Any other solutions?

With my best regards.
Secil

-
Wicket-Java
--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/DateTextField-Problem-tp4288137p4288349.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



DateTextField Problem

2012-01-11 Thread Seçil Aydın
I am using DateTextField and DatePicker components for getting date value of
the user but
I have a problem with the component.The problem is when user enters
99.99. to the text field and clicks on submit button it gives an
error(invalid date) -its ok till now- but when user wants to change the time
date converted to 07.06.10007 so user can not easily reach a valid date.
Is there any solution to this?
With my best regards.


Here is my code:
tEndDate = new DateTextField(endDate, new ModelDate(),  new
StyleDateConverter(S-, true))
{

private static final long serialVersionUID = 1L;

@Override
public Locale getLocale()
{
return new Locale(tr);
}
};

DatePicker  dPicker = new DatePicker();
dPicker.setShowOnFieldClick(true);
tEndDate.add(new DatePicker());

-
Wicket-Java
--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/DateTextField-Problem-tp4288137p4288137.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: Jquery Problem with Wicket Deployment Mode

2011-12-21 Thread Seçil Aydın
Hi Martin,the problem is:
we have a menu moving with jquery functions, these functions could not be
executed after this change since they could not be loaded.

-
Wicket-Java
--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Jquery-Problem-with-Wicket-Deployment-Mode-tp4221713p4221741.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: Jquery Problem with Wicket Deployment Mode

2011-12-21 Thread Seçil Aydın
jquery is only included from java code, it is not included from html code
It loses context path when calling with deployment mode.

Like:


Development mode :

Server/GUI_NAME/……/jquery.js

Deployment mode : 

Server/……/jquery.js


-
Wicket-Java
--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Jquery-Problem-with-Wicket-Deployment-Mode-tp4221713p4221850.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: Jquery Problem with Wicket Deployment Mode

2011-12-21 Thread Seçil Aydın
Martin thank you for your response, we will do it.

-
Wicket-Java
--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Jquery-Problem-with-Wicket-Deployment-Mode-tp4221713p4222338.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: Dynamically choosing component to add

2011-11-29 Thread Seçil Aydın
Thomas and Hans, thank you for your responses.

Mine issue is a little bit different, as you can see in the sample picture.
When page is opened only one couple of textfield should be displayed.When
user clicks on button, couple of textfields should be added to the page.Is
there any way?

http://apache-wicket.1842946.n4.nabble.com/file/n4118851/page_sample.png 

With my best regards.



-
Wicket-Java
--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Dynamically-choosing-component-to-add-tp3955869p4118851.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: Dynamically choosing component to add

2011-11-29 Thread Seçil Aydın
Thank you very much Thomas, i will follow the way that you provided.

Also thank you for your response Ritesh.

Regards.

-
Wicket-Java
--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Dynamically-choosing-component-to-add-tp3955869p4119794.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