h3 / jquery-utils

Automatically exported from code.google.com/p/jquery-utils
MIT License
0 stars 0 forks source link

DatePicker doesnot work if TimePickr is on the same page #63

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1.
2.
3.

What is the expected output? What do you see instead?
Should be able to see DatePicker along with timepicker

What version of the product are you using? On what operating system?
0.7.0a Standalone, Windows 7

Please provide any additional information below.
I'm using your timepickr in my mvc3 project. So, i'm using the scripts and css 
like this--

@Scripts.Render("~/bundles/jquery")
@Scripts.Render("~/bundles/jqueryui")
<link title="theme" type="text/css" 
href="http://ui.jquery.com/applications/themeroller/css/jquery-ui-base.css.php?c
tl=themeroller&amp;=" media="screen" rel="Stylesheet" id="themeCSS" />
<link href="~/Content/ui.core.css" rel="stylesheet" />
<link href="~/Content/ui.timepickr.css" rel="stylesheet" />
<script type="text/javascript" 
src="http://code.jquery.com/jquery-latest.js"></script>
<script src="~/Scripts/jquery.timepickr.js"></script>

<script type="text/javascript">
    $(function () {
        $("#timepickr").timepickr({
            convention: 12,
            format12: "{h:02.d}:{m:02.d} {z:s}",
            rangeMin: $.range(0, 60)
        });
    });
    function datepicker(){
         $("#datepicker").           //unable to see datepicker
    }
</script>

How do i resolve it. Any help would be great

Original issue reported on code.google.com by karthikr...@gmail.com on 3 Dec 2012 at 10:23