jQuery ui ReSizable with scroll bars

后端 未结 3 799
执念已碎
执念已碎 2020-12-14 21:02

I am trying to have a resizable on a div, but the resizer handle is always contained within the div can I have it where scrollbars end.

3条回答
  •  感情败类
    2020-12-14 21:36

    Check option http://api.jqueryui.com/resizable/#option-alsoResize

    This works for me

     $(".responsive-table th").resizable({
                    handles: "e",
                    containment: 'document',
                    alsoResize: ".responsive-table table"
                });
    

提交回复
热议问题