Fórum

Get Time Alloy UI in 24 hours format

thumbnail
Danial Mustofa Habibi, modificado 10 Anos atrás.

Get Time Alloy UI in 24 hours format

Regular Member Postagens: 141 Data de Entrada: 01/11/11 Postagens Recentes
Hi there how to show allow ui date picker for time field using 24 hours format?
I'f I'm using


<%
			Calendar dob = CalendarFactoryUtil.getCalendar();
		dob.setTime(new Date());
		%>
		
		<aui:input name="schedule_msg" model="<%= Message_Schedule.class %>" bean="<%= msch %>" value="<%= now %>" label="Schedule Time" />
		



it shows in am/PM mode...or if using AM/PM mode how to get the value??normally if i want to get value in my Portlet Class just like this
	int day = ParamUtil.getInteger(request, "schedule_msgDay");
		int month = ParamUtil.getInteger(request, "schedule_msgMonth");
		int year = ParamUtil.getInteger(request, "schedule_msgYear");
		int hour = ParamUtil.getInteger(request, "schedule_msgHour");
		int min  = ParamUtil.getInteger(request, "schedule_msgMinute");
		
		try
		{
			
			msgSchedule.setSchedule_msg(PortalUtil.getDate(month, day, year, hour, min, new PortalException()));
		}catch(Exception e)
		{
			msgSchedule.setSchedule_msg(new Date());
		}

any idea how to get that value??
example in the picture it show 4:54: PM so it means in 24 hours it become 16:54:00 .... Please any help

Thank's

Regards


Danial