Page 1 of 1

Text Shadow

Posted: Thu Aug 22, 2013 7:02 pm
by Joe Bohen

Hi,

I am attempting to turn off text shadow. On the page load event I have used:
Appery('currencylist').css('text-shadow', 'none');
where currencylist is the id of a select control. I have also used:
Appery('fuel_pge_currencylist').css('text-shadow', 'none');
where 'fuel_pge_currencylist' is the id set by Appery. Both fail to set the property. How do I achieve this?

Regards,
Joe


Text Shadow

Posted: Thu Aug 22, 2013 7:17 pm
by Maryna Brodina

Hello! Could you clarify for what component you want to turn off text shadow?


Text Shadow

Posted: Thu Aug 22, 2013 8:04 pm
by Joe Bohen

Hi Marina,

Thought I had made it clear, let me see if I can explain it a little better.

'currencylist' is the name I have given the select component in the developer.

'fuel_pge_currencylist' is the id that 'currencylist' is given by Appery when you test the app and inspect the element using chrome developer tools!

Regards,
Joe


Text Shadow

Posted: Thu Aug 22, 2013 8:34 pm
by Maryna Brodina

Try codeAppery("currencylist").parent().find("span").css('text-shadow', 'none')/code


Text Shadow

Posted: Thu Aug 22, 2013 9:09 pm
by Joe Bohen

Hi Marina, That's great Thanks.