Hi,
Below is the JSP and the Action class. I have tried most of the possible
solutions posted on nabble sie as well as in the posts those I found through
google. I am still uable to load the datetimepicker control in IE as well as
FF.

JSP - 
<%@ include file="/WEB-INF/pages/common/standard-includes.jsp" %>
<html>
<s:head theme="ajax" />
<body>
<s:form action="getDetailedReport" namespace="." validate="true">
<s:datetimepicker name="periodEndDate"></s:datetimepicker>&nbsp;&nbsp;
</s:form>
</body>

Action Class - 
public class DetailedTimesheetReportAction extends ActionSupport 
{
        private static final Log logger =
LogFactory.getLog(DetailedTimesheetReportAction.class);
        private Date periodEndDate;
        
        
        public String defaultReport()
        {
                logger.info("Inside Report - defaultReport");
                //get the weekend for the current week i.e. the coming Sunday
                
                
                return SUCCESS;
        }
        
        public String createDetailedReport()
        {
                
                return SUCCESS;
        }

        public Date getPeriodEndDate() {
                return periodEndDate;
        }

        public void setPeriodEndDate(Date periodEndDate) {
                this.periodEndDate = periodEndDate;
        }
}

What is wrong? Can anyone point out the mistake???
-- 
View this message in context: 
http://www.nabble.com/datetimepicker-....unable-to-get-it-working-%3A%28-tp21209537p21209537.html
Sent from the Struts - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscr...@struts.apache.org
For additional commands, e-mail: user-h...@struts.apache.org

Reply via email to