validation - jQuery date time event scheduler -
i unable find jquery plugin can setup multiple event day scheduler along validations on time. instance, typical schedule this:
<table border="1"> <tr> <th>#</th> <th>date</th> <th>topic</th> <th>from</th> <th>to</th> <th>speaker</th> <th>total hours</th> </tr> <tr> <td>1. </td> <td><input type="text" size="10"></td> <td><input type="text" size="10"></td> <td><input type="text" size="5"></td> <td><input type="text" size="5"></td> <td><input type="text" size="7"></td> <td><input type="text" size="5"></td> </tr> <tr> <td>2. </td> <td><input type="text" size="10"></td> <td><input type="text" size="10"></td> <td><input type="text" size="5"></td> <td><input type="text" size="5"></td> <td><input type="text" size="7"></td> <td><input type="text" size="5"></td> </tr> <tr> <td>3. </td> <td><input type="text" size="10"></td> <td><input type="text" size="10"></td> <td><input type="text" size="5"></td> <td><input type="text" size="5"></td> <td><input type="text" size="7"></td> <td><input type="text" size="5"></td> </tr> </table> <br/> <table border="1"> <tr> <th>date</th> <th>topic</th> <th>from</th> <th>to</th> <th>speaker</th> <th>total hours</th> </tr> <tr> <td>29-05-2016</td> <td>sample topic 1</td> <td>01:00 pm</td> <td>03:30 pm</td> <td>guest speaker 1</td> <td>2:5</td> </tr> <tr> <td>29-05-2016</td> <td>sample topic 2</td> <td>04:00 pm</td> <td>04:30 pm</td> <td>guest speaker 2</td> <td>0.5</td> </tr> <tr> <td>29-05-2016</td> <td>sample topic 3</td> <td>05:00 pm</td> <td>07:00 pm</td> <td>guest speaker 3</td> <td>2.0</td> </tr> <tr> <td colspan="4"></td> <td>total</td> <td>5.0</td> </tr> </table>
so basically, need validate: 1. (time) should not less (time) 2. (time) should not less (time) of preceding row.
i using bootstrap.
is there plugin can use purpose?
Comments
Post a Comment