Re: [FlexJS] Struggling with custom HTML

2017-03-27 Thread Alex Harui
On 3/27/17, 12:03 AM, "Harbs" wrote: > >My specific problem was caused by the CheckBox component. The way >CheckBox was made, it’s not styleable. Styleable checkboxes require CSS >which hides the default checkbox and creates a pseudo-element which is >styled by CSS to have the desired look. > >

Re: [FlexJS] Struggling with custom HTML

2017-03-27 Thread Harbs
> On Mar 27, 2017, at 7:03 AM, Alex Harui wrote: > > > > On 3/26/17, 5:59 AM, "Harbs" wrote: > >> I have been successful using compc with conditional compiles outside the >> framework, but I was not successful using mxmlc. > > The "dual" branch should have better support for conditional com

Re: [FlexJS] Struggling with custom HTML

2017-03-26 Thread Alex Harui
On 3/26/17, 5:59 AM, "Harbs" wrote: >I have been successful using compc with conditional compiles outside the >framework, but I was not successful using mxmlc. The "dual" branch should have better support for conditional compilation in the application source. But I'd like to understand which

Re: [FlexJS] Struggling with custom HTML

2017-03-26 Thread Harbs
I have been successful using compc with conditional compiles outside the framework, but I was not successful using mxmlc. > On Mar 26, 2017, at 3:20 PM, Peter Ent wrote: > > The way it stands now, you do need to create a new component in the > framework somewhere. In the long run, developers wi

Re: [FlexJS] Struggling with custom HTML

2017-03-26 Thread Peter Ent
The way it stands now, you do need to create a new component in the framework somewhere. In the long run, developers will want to make their own component sets that make use of conditional compilation, so now would be a good time to come up with that. You should be able to do this outside of the fr

[FlexJS] Struggling with custom HTML

2017-03-26 Thread Harbs
I want to use a Topcoat checkbox in an app. That requires some HTML like this: Checkbox Label I cannot think of a normal way of including something like this in my app without creating a whole new framework component. Conditional compiles do not seem to work. I don’t know why. I also