TableView inside a Panel have an unused space outside the table that can not be reduced by software (see gray area in the photo)
The space is the same in your show case (http://smartgwt-mobile.smartclient.c...ets/TableViews)
For smartgwt-mobile.jar 14-apr-2016 I tried
The space is the same in your show case (http://smartgwt-mobile.smartclient.c...ets/TableViews)
For smartgwt-mobile.jar 14-apr-2016 I tried
Code:
TableView tableView = new TableView(); tableView_scroller = new Panel( "table_view"); //tableView_scroller = new ScrollablePanel( "table_view"); tableView_scroller.setMargin( 1); tableView.setMargin( 1); tableView.setLayoutMargin( 1); tableView.setLayoutTopMargin( 1); tableView_scroller.setLayoutMargin( 1); tableView_scroller.setLayoutTopMargin( 1); tableView_scroller.addMember( tableView);