當在正常視圖中使用選擇100%時,網格會定期運行,但如果將大小更改爲較小或縮放,則選擇無法正常工作。在另一方面,該選項檢查工作完全在http://jsfiddle.net/mutesex/czxgg/2/jquery ui可選擇丟失區域縮放動畫
$("#slider").slider({
value: 1,
min: 0.1,
max: 2,
step: 0.1,
slide: function (event, ui) {
$("#amount").html("" + parseInt((ui.value) * 100) + "%");
$('#<%= GridView1.ClientID%>').animate({ zoom: ui.value }, 1);
//selectable___();
}
});
$("#amount").html("100%");
function selectable___() {
$(document).ready(function() {
$("#<%= GridView1.ClientID%>").selectable({
filter: "td[free='yes']",
stop: function() {
var result = $("#select-result").empty();
$(".ui-selected", this).each(function() {
var dia__ = $(this).attr("infodia");
if (!ExisteItem(dia__)) {
result.append(" #" + dia__);
diasSeleccion.push({ infodia: dia__ });
}
});
},
unselected: function (event, ui) { var e = $(ui.unselected); removeItem(e.attr("infodia")); },
unselecting: function (event, ui) { var e = $(ui.unselecting); removeItem(e.attr("infodia")); }
});
});
};
沒有明顯的問題在這裏(使用Chrome最新)。 「選擇」是什麼意思? – Blazemonger
我喜歡Chrome。 –
當我應用zoom + - ,100%完美時出現問題 – mutesex