jQuery-UI Datepicker CSS problème

J'ai c'est assez simple page HTML avec un datepicker de jQuery:

    <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title>jQuery Datepicker</title>
    <link rel="stylesheet" href="../App_Themes/Default/ui.datepicker.css" type="text/css"
        media="screen" title="Smoothness" />

    <script src="../Shared/Scripts/jquery-1.2.6.min.js" type="text/javascript"></script>

    <script src="../Shared/Scripts/jquery-ui-1.5.3.min.js" type="text/javascript"></script>

    <script language="javascript" type="text/javascript">
        $(document).ready(PageLoad);

        function PageLoad() {
            $('#textBox').datepicker();
        }
    </script>

</head>
<body>
    <input type="text" id="textBox" />
</body>
</html>

Le datepicker lui-même semble fonctionner parfaitement mais je ne peux pas appliquer mon thème. Ai-je raté quelque chose de vraiment stupide ici?

Merci !!!!

Il fonctionne très bien pour moi. Vérifiez le chemin d'accès et CSS validité.

OriginalL'auteur Andre Gallo | 2009-01-20