Horizontal Resizing
Hello dear community.
I have a stupid question.
i have a code which builds two components. it works fine but i want to horizontal resize this components with mouse when i move mouse on the border between components.
JPanel view =new JPanel(new BorderLayout());
createBusinessTree();
JScrollPane sp =new JScrollPane(businessTree);
view.add(sp, BorderLayout.WEST);
requestItemsTable =new RequestItemDataTable(requestService);
JScrollPane sp1 = getComponentFactory().createScrollPane(requestItemsTable.getControl());
view.add(sp1, BorderLayout.CENTER);
return view;
here is a code!

