javascript - JQuery custom calendar -
i kind of want create calendar can see here: http://fullcalendar.io/
i want have time x-axis , different names y-axis. created own version using jquery ui slider: http://rockaholics-cologne.de/root/timetable.php
using slider doesn't feel optimal approach. not asking code here. maybe can tell me for. want create these resizeable bars seen in first link , have them in layout seen in second link.
i can't find right keywords google maybe have idea?
thanks! :d
this fiddle here give groundwork resizable divs http://jsfiddle.net/nick_craver/bx2mk/ think looking .enter code here
$("#resizable").resizable({ handles: 'e, w' });
#resizable { width: 150px; height: 50px; padding: 0.5em; } #resizable h3 { text-align: center; margin: 0; }
<link href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.4/themes/overcast/jquery-ui.css" rel="stylesheet"/> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script> <script src="https://code.jquery.com/ui/1.12.0-rc.2/jquery-ui.min.js" integrity="sha256-55jz3pbcf8z9jbo1qq7cif0l+neuptd1u7ytzrp2dqo=" crossorigin="anonymous"></script> <div id="resizable" class="ui-widget-content"> <h3 class="ui-widget-header">resizable</h3> </div>
Comments
Post a Comment