Hi,
I am using <smartgwt.version>12.1-p20210219</smartgwt.version>
I have set these properties on Layout:
layout.setShowResizeBar(true);
final Splitbar resizeBarConfig = new Splitbar();
resizeBarConfig.setCanDragResize(false);
layout.setAutoChildProperties("resizeBar", resizeBarConfig);
mainLayout.addMember(layout);
It shows resizebar, i only want expand/collpase functionality of resizebar, not the dragResize functionality.
So i have set resizeBarConfig.setCanDragResize(false);
It works fine,it doesnt grags and resize.
But once in 3-4 trials of dragging it , the resizebar drags and gets stuck(resizeBar2.png)
Please help me on this.
I am using <smartgwt.version>12.1-p20210219</smartgwt.version>
I have set these properties on Layout:
layout.setShowResizeBar(true);
final Splitbar resizeBarConfig = new Splitbar();
resizeBarConfig.setCanDragResize(false);
layout.setAutoChildProperties("resizeBar", resizeBarConfig);
mainLayout.addMember(layout);
It shows resizebar, i only want expand/collpase functionality of resizebar, not the dragResize functionality.
So i have set resizeBarConfig.setCanDragResize(false);
It works fine,it doesnt grags and resize.
But once in 3-4 trials of dragging it , the resizebar drags and gets stuck(resizeBar2.png)
Please help me on this.
Comment