如何約束PanelPositioned的元素,以便它們只能在當前面板內拖動?我有兩個不同數據類型的垂直列表,一個在另一個之上。兩者都使用一個PanelPositioned以允許拖動&降重新排序,但元件可以上下拖動到另一個面板,生成誤差定位互動的兩個ICEfaces面板
<ice:panelPositioned id="dragPanel1" var="dataType1var"
value="#{displayBean.dataType1List}" constraint="vertical">
<ice:panelGroup style="cursor:move;">
</ice:panelGroup>
</ice:panelPositioned>
<ice:panelPositioned id="dragPanel2" var="dataType2var"
value="#{displayBean.dataType2List}" constraint="vertical">
<ice:panelGroup style="cursor:move;">
</ice:panelGroup>
</ice:panelPositioned>