For the scrollbars:
from javax.swing import JScrollPane
table = event.source.parent.getComponent('Table')
table.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_NEVER)
table.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_NEVER)
Edit: Here’s a better way to do it. There is no need to need to import the JScrollPane class, only need the ScrollPaneConstants.
from javax.swing import ScrollPaneConstants
table = event.source.parent.getComponent('Table')
table.setHorizontalScrollBarPolicy(ScrollPaneConstants.HORIZONTAL_SCROLLBAR_NEVER)
table.setVerticalScrollBarPolicy(ScrollPaneConstants.VERTICAL_SCROLLBAR_NEVER)