Hi ,
I am using <smartgwt.version>12.1-p20210219</smartgwt.version>
I want resizable dropdown.
So i added following code in SelectItem/ComboBoxItem:
final ListGrid pickListProps = new ListGrid();
pickListProps.setCanHover(true);
pickListProps.setShowHover(true);
pickListProps.setLeaveScrollbarGap(false);
pickListProps.setCanResizeFields(true);
pickListProps.setCanDragResize(true);
setPickListProperties(pickListProps);
Problem is that when i diagonally strech pickList it works wonderfully.
But when i try to vertically strech pickList, picklistBody do not increase its height.
It only happens when there is alot data in pickList, i mean there is vertical scrollBar in pickList.
Attaching screenshot.
Can you please help.
I am using <smartgwt.version>12.1-p20210219</smartgwt.version>
I want resizable dropdown.
So i added following code in SelectItem/ComboBoxItem:
final ListGrid pickListProps = new ListGrid();
pickListProps.setCanHover(true);
pickListProps.setShowHover(true);
pickListProps.setLeaveScrollbarGap(false);
pickListProps.setCanResizeFields(true);
pickListProps.setCanDragResize(true);
setPickListProperties(pickListProps);
Problem is that when i diagonally strech pickList it works wonderfully.
But when i try to vertically strech pickList, picklistBody do not increase its height.
It only happens when there is alot data in pickList, i mean there is vertical scrollBar in pickList.
Attaching screenshot.
Can you please help.
Comment