2014-03-31 76 views
2

我已經實現嵌套了兩列,拖放嵌套的兩個欄高度問題

http://dbushell.github.io/Nestable/

現在的問題是,如果一列長的高度和第二個是小然後拖動ñ下降我通過從第一列中選​​擇任何元素並在最後一個元素下精確到第二列進行滾動,

那麼有沒有解決方案?

可以檢查演示在這裏http://dbushell.github.io/Nestable/

here am trying to drop element at the end of right side column but that will dont work untill you put it exact uder the last element of right column

這裏我試圖在右側立柱年底下降元素,但將不工作,直到你把它精確右列的最後一個元素

+0

我想我不得不做出更改插件的代碼,它的工作。 – Bilal

+0

.dd-list .dd-list {padding-left:0px; } – sunilkjt

回答

2

我把插件的源上一看,知道如何解決這個問題,首先 墊襯的一些添加到列表的底部

div.dd { 
    padding-bottom: 200px; 
} 
在插件的源代碼改變這個

if (this.pointEl.hasClass(opt.handleClass)) { 
    this.pointEl = this.pointEl.parent(opt.itemNodeName); 
} 

if (this.pointEl.hasClass(opt.handleClass)) { 
     this.pointEl = this.pointEl.parent(opt.itemNodeName); 
    }else { 
     var list = this.pointEl.find('> .'+ opt.listClass); 
     if(list.length) this.pointEl = list.find('.'+ opt.itemClass +':last'); 
    } 
+0

它不工作,我試過了 –

+0

正確,我仍在調查。 – Bilal

+0

好的朋友,謝謝 –