如何minWidth
根据子 div 的正确位置动态设置父 div。
我的第一个假设是:
$('#cell_'+cell).resizable({
handles: "n, e, s, w, ne, nw, se, sw",
containment: "parent",
minWidth: getMaxWidthChilds(cell),
resize: function(event, ui) {
resi(cell, ui);
subresize(cell);
},
stop: function(event, ui) {
resi(cell, ui);
subresize(cell);
}
})
子 div 是可调整大小和可拖动的,因此在孩子的位置改变后,minWidth
父 div 的位置不会改变。