Input box setStyle not working properly
Hi, I'm using AW 2.5.2 and the following two lines of code do not function properly:
In this code, inpJobSearch is an instance of AW.UI.Input. The color that gets set when found == false is #ff2234, not #ff6666. I have no clue where this color comes from, as it does not appear anywhere else in my application.
This line just flat out does not do what I would think it should do (change the text color for the input box text). Is there some other way of accomplishing this?
Thanks!
inpJobSearch.setStyle ( 'background', found == false ? '#ff6666' : 'white' );
In this code, inpJobSearch is an instance of AW.UI.Input. The color that gets set when found == false is #ff2234, not #ff6666. I have no clue where this color comes from, as it does not appear anywhere else in my application.
inpJobSearch.setStyle ( 'color', found == false ? 'white' : 'black' );
This line just flat out does not do what I would think it should do (change the text color for the input box text). Is there some other way of accomplishing this?
Thanks!
Derrick
August 21,