The following warnings occurred:
Warning [2] Undefined variable $unreadreports - Line: 26 - File: global.php(961) : eval()'d code PHP 8.1.2-1ubuntu2.14 (Linux)
File Line Function
/global.php(961) : eval()'d code 26 errorHandler->error
/global.php 961 eval
/showthread.php 28 require_once





× This forum is read only. As of July 23, 2019, the UserSpice forums have been closed. To receive support, please join our Discord by clicking here. Thank you!

  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Datepicker & JQuery
#2
jQuery is loaded by default...every once in a while I have some sort of oddness with it.

I use this one and put the css in the users/css folder and js in the users/js folder.
http://trentrichardson.com/examples/timepicker

I can't remember if I HAVE to include jQuery UI, so it would be (at the top of the page)
Code:
<link rel="stylesheet" href="users/js/jquery-ui.min.css">
Code:
<link rel="stylesheet" href="users/js/timepicker.css">

At the bottom (in the scripts section)
Code:
<script src="users/js/external/jquery/jquery.js"></script>
Code:
<script src="users/js/jquery-ui.min.js"></script>
Code:
<script src="users/js/timepicker.js"></script>
Code:
<script>
<pre>
Code:
$('#check_in').datetimepicker({
  dateFormat: "yy-mm-dd"
});
</pre>


<pre>
Code:
$('#check_out').datetimepicker({
  dateFormat: "yy-mm-dd"
});
</pre>


Code:
</script>

Then you need to make sure that your date and time are formatted properly and in the same way as the db. A typical form form input would be...

Code:
<div class="form-group">
Code:
<label for="name">Check Out*</label>
Code:
<input type="text" class="form-control" name="check_out" id="check_out"
Code:
value="<?php if(!empty($_POST)){echo Input::get('check_out');}?>"required>
Code:
</div>
  Reply


Messages In This Thread
Datepicker & JQuery - by marciocaparica - 12-14-2016, 05:40 PM
Datepicker & JQuery - by mudmin - 12-14-2016, 05:52 PM
Datepicker & JQuery - by marciocaparica - 12-14-2016, 05:55 PM
Datepicker & JQuery - by mudmin - 12-14-2016, 06:45 PM
Datepicker & JQuery - by Brandin - 02-02-2017, 10:28 PM
Datepicker & JQuery - by mudmin - 02-03-2017, 02:10 PM

Forum Jump:


Users browsing this thread: 1 Guest(s)