Re: Need help with ScrollPane sizing inside nested panes

2014-09-11 Thread Kevin Smith
That seems to have done the trick. It's like magic! Thanks! Kevin On 09/11/2014 05:12 AM, Eric Le Ponner wrote: > Try using StackPane in place of Pane. > Pane is pretty basic in term of layout capabilities. > > Eric > > > On 11 Sep 2014, at 01:46, Kevin Smith wrote: > >> If we have a Pane

Re: Need help with ScrollPane sizing inside nested panes

2014-09-11 Thread Eric Le Ponner
Try using StackPane in place of Pane. Pane is pretty basic in term of layout capabilities. Eric On 11 Sep 2014, at 01:46, Kevin Smith wrote: > If we have a Pane containing a ScrollPane containing a GridPane, > everything works as expected. But as soon as we inject a second Pane > (which is har

Need help with ScrollPane sizing inside nested panes

2014-09-10 Thread Kevin Smith
If we have a Pane containing a ScrollPane containing a GridPane, everything works as expected. But as soon as we inject a second Pane (which is hard for us to avoid in this case), the ScrollPane no longer grows to fit its space. See the example app below. Without "inner", it works great. Is there