datepicker - HTA Time Picker -
i'm building hta (userform) , add time picker have been unsucessful getting work. i'm using jquery date picker successfully, website not have reference using time picker, or manipulating date picker show time. since hta stand alone applicaiton know options limited, knows i'm missing here. thanks!
<head> <meta charset="utf-8" /> <link rel="stylesheet" href="http://code.jquery.com/ui/1.10.2/themes/smoothness/jquery-ui.css" /> <script src="http://code.jquery.com/jquery-1.10.2.js"></script> <script src="http://code.jquery.com/ui/1.10.4/jquery-ui.js"></script> <style type="text/css"> .ui-datepicker { background: #035c7e; border: 1px solid #555; color: #eee;} </style> <script> $(function() { $( "#datepicker1" ).datepicker(); }); </script> </head> <body> shift date: <input type="text" name="startdate" id= "datepicker1" size="8"> start time: <input type="text" name="starttime" id= "" size="8"> etc. </body>
download 2 external js-files , include them local filesystem.
Comments
Post a Comment