RE: CSS variables error

2021-03-17 Thread Maria Jose Esteve
Well no, it was a "false positive", I will leave it pending until I see if someone can take the time to add the CSS variables to the compiler. Hiedra De: Maria Jose Esteve Enviado el: miércoles, 17 de marzo de 2021 19:47 Para: users@royale.apache.org Asunto: RE: CSS variables error I already

RE: CSS variables error

2021-03-17 Thread Maria Jose Esteve
I already have it working. In case someone reads "CSS vanilla" and stays the same as I have ... "vanilla" = "the basics" Thx Harbs. Hiedra De: Harbs Enviado el: miércoles, 17 de marzo de 2021 16:23 Para: users@royale.apache.org Asunto: Re: CSS variables error Anything in here:

RE: [EXTERNAL] Re: Soft Keyboard Issue

2021-03-17 Thread Bilbosax
Thanks for the tip Brian. That OSUtils is a nice little feature I would never have found. It's not perfect now, but it is certainly much much better. -- Sent from: http://apache-royale-users.20374.n8.nabble.com/

Validation

2021-03-17 Thread David Slotemaker de Bruine
Hi, I need to validate a form. I have been checking out the TDJ example and have some questions: Can you write you own validation function that validates an array of validators that you have specified (Like in Flex)? Example I have 2 TextInputs and a Combo. The form can only be submitted if

Re: CSS variables error

2021-03-17 Thread Harbs
Anything in here: https://www.w3.org/Style/CSS/specs.en.html > On Mar 17, 2021, at 2:34 PM, Maria Jose Esteve wrote: > > Hahahaha, Do you notice that I am learning EVERYTHING? , I'm going to find > out what “plain vanilla” is and I'll tell you. > > Thanks Harbs > Hiedra > > De: Harbs >

Chaining Events/Sever requests

2021-03-17 Thread David Slotemaker de Bruine
Hi All, I need to chain server requests so that request 3 only fires after 1 and 2 have returned. I am using CRUX, I see there is a ChainEvent class but not sure if that is what I am looking for. I would like to chain the events from the Controller and also from the View. Cheers, David

RE: CSS variables error

2021-03-17 Thread Maria Jose Esteve
Hahahaha, Do you notice that I am learning EVERYTHING? , I'm going to find out what “plain vanilla” is and I'll tell you. Thanks Harbs Hiedra De: Harbs Enviado el: miércoles, 17 de marzo de 2021 13:30 Para: users@royale.apache.org Asunto: Re: CSS variables error It needs to be a plain

Re: CSS variables error

2021-03-17 Thread Harbs
It needs to be a plain vanilla (HTML style) CSS file. Namespaces are not recognized in regular css. > On Mar 17, 2021, at 10:21 AM, Maria Jose Esteve wrote: > > My external CSS file is "assets / css / initializations.css" and I add it to > the html template before "$ {application} .css": >

RE: CSS variables error

2021-03-17 Thread Maria Jose Esteve
My external CSS file is "assets / css / initializations.css" and I add it to the html template before "$ {application} .css": Test 1 - In the initializations.css file I include only the definition of the variables (it seemed that was what caused the error) - It does not work.

RE: CSS variables error

2021-03-17 Thread Maria Jose Esteve
Hi, @Harbs, I'm going to try it again, it could be a “FALSE NEGATIVE” (a phrase that I'm getting used to lately ) or simply that she “was asleep”…. Now I tell you. Hiedra De: Harbs Enviado el: miércoles, 17 de marzo de 2021 7:26 Para: users@royale.apache.org Asunto: Re: CSS variables error

Re: CSS variables error

2021-03-17 Thread Harbs
> It seems that the solution was to create an external css that would not go > into the compilation process but this does not work here. Wait. Missed this line. Why wouldn’t it work? > On Mar 17, 2021, at 1:08 AM, Maria Jose Esteve wrote: > > Hello, > I am trying to use "variables" in my

Re: CSS variables error

2021-03-17 Thread Harbs
The compiler needs to understand the css in order to compile it. Any features that the compiler doesn’t understand need to be added to the compiler. Definitely add this as a Github issue. To use unsupported CSS features, you need a CSS file which is not run through the compiler. What I do is