|
|
|
ใช้ Date picker + Sorttable ไม่ได้ครับ |
|
|
|
|
|
|
|
มาดูโค้ดกันก่อนนะครับ
Code (PHP)
<script src="libs/jquery-ui/development-bundle/jquery-1.6.2.js"></script>
<script src="libs/jquery-ui/development-bundle/ui/jquery.ui.core.js"></script>
<script src="libs/jquery-ui/development-bundle/ui/jquery.ui.widget.js"></script>
<script src="libs/jquery-ui/development-bundle/ui/jquery.ui.datepicker.js"></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.js"></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/jquery-ui.js"></script>
ด้านบนนี้เป็นไฟล์ที่เรียกเข้ามา
ถ้า Cooment บรรทัด
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.js"></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/jquery-ui.js"></script>
ตัว Datepicker จะใช้ได้ แต่ Sorttable ใช้ไม่ได้
แต่ถ้าเปิดไว้ จะใช้ Sortable ได้ แต่ Datepicker ไม่ได้อ่ะครับ เลยงงๆ ว่าอะไรมันซ้อนๆกันอยู่
Code (PHP)
$(function() {
var dates = $( "#dStart, #dStop" ).datepicker({
changeMonth: true,
numberOfMonths: 1,
onSelect: function( selectedDate ) {
var option = this.id == "dStart" ? "minDate" : "maxDate",
instance = $( this ).data( "datepicker" ),
date = $.datepicker.parseDate(
instance.settings.dateFormat ||
$.datepicker._defaults.dateFormat,
selectedDate, instance.settings );
dates.not( this ).datepicker( "option", option, date );
}
});
});
// Sorttable
$(document).ready(function(){
function slideout(){
setTimeout(function(){
$("#response").slideUp("slow", function () { });
}, 2000);}
$("#response").hide();
$(function() {
$("#list ul").sortable({ opacity: 0.8, cursor: 'move', update: function() {
var order = $(this).sortable("serialize") + '&update=update';
$.post("AjaxProcess/updateList.php", order, function(theResponse){
$("#response").html(theResponse);
$("#response").slideDown('slow');
slideout();
});
}
});
});
});
ด้านบนนี้เป็นโค้ด jQuery
Tag : PHP
|
|
|
|
|
|
Date :
2011-10-07 21:32:36 |
By :
adaaugusta |
View :
1115 |
Reply :
1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<script src="libs/jquery-ui/development-bundle/jquery-1.6.2.js"></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.js"></script>
เลือกเอาสักตัวครับ จะใช้ตัวใหม่หรือตัวเก่า
ถ้าจะให้ดีก็โหลดตัวใหม่มาใช้ทั้งหมดเลย ทั้ง jquery+ui
แล้วพวกข้างบนนั้นก็ลบทิ้งหมด เพราะตัวใหม่ๆมาครบ
|
|
|
|
|
Date :
2011-10-10 20:10:44 |
By :
mr.v |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|