如何根据子div的正确位置动态设置父div的minWidth
。
我的第一个假设是:
$('#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可调整大小并且可拖动,因此在更改子位置后,父div的minWidth
不会更改。