This week's book giveaway is in the Cloud/Virtualization forum.
We're giving away four copies of Cloud Application Architecture Patterns: Designing, Building, and Modernizing for the Cloud and have Kyle Brown, Bobby Woolf and Joseph Yodor on-line!
See this thread for details.
  • Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Paul Clapham
  • Ron McLeod
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Roland Mueller
  • Piet Souris
Bartenders:

Dojo datetimepicker issue in Struts2.2.3.1

 
Greenhorn
Posts: 4
Netbeans IDE Eclipse IDE Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Hi,

here I have an issue with dojo <sx:datetimepicker> control as, I wrote code as follows:

<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<%@taglib prefix="s" uri="/struts-tags" %>
<%@taglib prefix="sx" uri="/struts-dojo-tags" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Add Order</title>
<sx:head/>
</head>
<body>
<s:form action="addClient.action" name="formName">
<sx:datetimepicker label="Ship Date" name="sdate" displayFormat="dd-MMM-yyyy" required="true" toggleDuration="200" toggleType="fade"></sx:datetimepicker>
<sx:datetimepicker type="time" label="Ship Time" name="stime" displayFormat="hh:mm:ss"></sx:datetimepicker>

<s:submit value="Place Order"></s:submit>
</s:form>
</body>
</html>


Here the first control i.e date control is displaying (or working) properly,but when it is come to second control i.e timepicker its displaying only label but it’s fail to display textbox and icon for this time picker control.

Please help me regarding this.


Thanks & Regards,
Rajendra Prasad K,
Cognizant Technology Solutions.
India.
Dojo datetimepicker issue in Struts2.2.3.1
 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic