2
左パネルのdivをドラッグして、jquery sortable(interface.js)を使用して右パネルにドロップしたいと思います。jqueryドラッグアンドドロップで異なるdivとdivクラス間でソート可能
コードが
$(document).ready(
function()
{
$('div#block-selector').Sortable(
{
accept: 'new-component',
helperclass: 'sortHelper',
activeclass : 'sortableactive',
hoverclass : 'sortablehover',
handle: 'span',
tolerance: 'pointer',
connectWith: '#droppableArea',
containment: 'div#droppableArea',
onChange : function(ser)
{
},
onStart : function()
{
$.iAutoscroller.start(this, document.getElementsByTagName('body'));
},
onStop : function()
{
$.iAutoscroller.stop();
}
}
);
}
);
のdiv#ブロックセレクタは、左側のパネルのdiv要素で、右側のパネルのDIV#1 droppableAreaにドロップ下記..しかし、働いていない... plsはmeeeeeee
を助けていますregardz
wahid
thnx。私は試してみる – Wahid4sap
私はdraggableとdroppableを使用して、私たちのソリューションを得た...... thnx .. – Wahid4sap