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

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.

CheckBox with includeInLayout="false"

2018-02-20 Thread Kyle McKnight
It appears that the spark CheckBox might have a defect and I would like to confirm if anyone has seen it. I didn't see it in the issues tracker. If you have a CheckBox with includeInLayout set to false, then when you set the label property, the display list does not update and show the text. I've