Re: CheckBox with includeInLayout="false"

2018-02-20 Thread Kyle McKnight
I assumed from what I read that it was simply removed from the calculations for measurements and layout of its parents I didn't realize its children wouldn't be laid out with in it. Thanks! On Feb 20, 2018 6:56 PM, "Erik J. Thomas" wrote: > That's correct behavior. When IncludeInLayout is false

Re: CheckBox with includeInLayout="false"

2018-02-20 Thread Erik J. Thomas
That's correct behavior. When IncludeInLayout is false, the control doesn't exist in the displayList and you are NOT going to see any changes you make to it's state until you make includeInLayout = true. You only want to use includeInLayout when you don't want the control in your layout. Also