1
빈 td 셀 드래그를 방지하거나 중지하는 방법 jQuery UI의 Draggable을 사용하고 있습니다.jQuery UI의 드래그 가능한 빈 테이블 셀 끌기 방지하는 방법?
내 코드 :
$("#demo table tr td").draggable({
helper: 'clone',
revert: 'invalid',
cursor: "move",
start: function (event, ui) {
setValues($(this).attr('id'),$(this).val());
},
stop: function (event, ui) {
$(this).css('opacity', '1');
}
});