You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@wicket.apache.org by grignette <la...@hotmail.fr> on 2013/02/14 11:26:01 UTC

DatePicket with IE 9

Hi !

I have a problem with datePicker on IE9 (only). The pop in of the calendar
doesn't display. I read other topic on internet but I don't find the
solution.

My Java code :

///Calendar
final WebMarkupContainer datecontainer = new
WebMarkupContainer("datecontainer");
datecontainer.setOutputMarkupId(true);
houseForm.add(datecontainer);
//textfield for recover the date
dateConstruct= new DateTextField("dateConstruct", new
PropertyModel<Date>(houseBean, "dateConstruct"), new
StyleDateConverter("S-", true));
calendar = new DatePicker();
calendar.setShowOnFieldClick(true);
calendar.setAutoHide(true);
dateConstruct.add(calendar);
datecontainer.add(dateConstruct);/

My HTML code :

/<?xml version="1.0" encoding="UTF-8"?>
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:wicket="http://wicket.apache.org">
<wicket:head>
	<title>Viva</title>
</wicket:head>
<body>
<wicket:extend>
<wicket:message key="CreateHousePage.form"/>
	
<div id="component">
	<div class="panel clear">		
			<div wicket:id="dataForm" >
				<form class="formulaire" wicket:id="createForm">
					<div wicket:id="datecontainer">
						<div class="form_text">
							<label wicket:for="dateConstruct">
								<wicket:message key="field.dateConstruct">date</wicket:message>
							</label>
						</div>
						<input wicket:id="dateConstruct" class="form"/>
					</div>
				</form>
		</div>
	</div>
</div>
</wicket:extend>
</body>
</html>/


I always read this topic :
http://apache-wicket.1842946.n4.nabble.com/DatePicker-does-not-work-in-IE9-td4650428.html  

Have you got any idea ?

Thanks 



--
View this message in context: http://apache-wicket.1842946.n4.nabble.com/DatePicket-with-IE-9-tp4656354.html
Sent from the Users forum mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@wicket.apache.org
For additional commands, e-mail: users-help@wicket.apache.org