Click here to Skip to main content
15,914,111 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Dear All,

I have trying to access JQuery Datepicker.

But its showing the functionalities in plain format.

I m not getting where i need to do modifications.

Please find the as an attachment.

& let me know where i need to do modifications
Posted
Comments
Sergey Alexandrovich Kryukov 21-Mar-12 3:31am    
What are you even talking about? What "plain format?" What "attachment"? Any code sample?
--SA
SIVA RAMAMOORTHY 21-Mar-12 3:39am    
Sorry i forogt to Attach the file actually...
Please find the code below

<head>
<title>jQuery UI Datepicker - Default functionality</title>
<link rel="stylesheet" href="Styles/jquery.ui.all.css">
<link rel="stylesheet" href="Styles/demos.css">
<script type="text/javascript" src="Scripts/jquery-1.7.1.js"></script>
<script type="text/javascript" src="Scripts/jquery.ui.core.js"></script>
<script type="text/javascript" src="Scripts/jquery.ui.widget.js"></script>
<script type="text/javascript" src="Scripts/jquery.ui.datepicker.js"></script>
<script type="text/javascript">
$(function() {
$("#datepicker").datepicker();
});
</script>
</head>
<body>

<div class="demo">

<p>Date: <input type="text" id="datepicker"></p>

</div><!-- End demo -->

</body>

please google it for .js & .css files

When i run the page its showing the date picker with plain format
[no name] 21-Mar-12 4:29am    
You should edit the question to post additional details rather that post a comment.

You still did not clarify "plain format"

Hi,
It must work. Check here[^].
I think you are missing some js references from jqueryUI...
Get all jQuery UI components in one file, that way you will ensure that you have all needed "parts" for datetime picker.
 
Share this answer
 
I got the solutions for my issue....
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900