LineSeries form property missing in 2.01

I just "upgraded" flex builder to 2.01 from 2.0. It looks
like the LineSeries class no longer contains the 'form' property.
Has it been renamed?

The answer to my own question is that 'form' is now a style.
It can be set by:
myLineSeries.setStyle("form", myForm);

Similar Messages

  • Flex 2.0.1 broke LineSeries.form in AS?

    Hi guys, I think this is a bug, but maybe I'm doing something
    wrong...
    When programatically adding a new LineSeries to a chart via
    AS, the compiler fails to find the LineSeries object's "form"
    property. This worked fine in Flex 2.0.0.
    Here's a really simple example:
    quote:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    layout="absolute">
    <mx:Script>
    <![CDATA[
    import mx.charts.series.LineSeries;
    private function test():void {
    var series:LineSeries = new LineSeries;
    series.form = "curve";
    ]]>
    </mx:Script>
    </mx:Application>
    The resulting compiler error is:
    quote:
    1119: Access of possibly undefined property form through a
    reference with static type mx.charts.series:LineSeries.
    Note, using the form '<mx:LineSeries form="curve"/>'
    works fine.
    Anyone else having this problem?
    Paul.

    Well actually it seems to be just the syles that are a
    problem. Most of the properties seem to work, but none of the
    styles do, except "radius".
    So, the following styles produce the same compiler error:
    bottom, errorColor, fill, focusBlendMode, focusSkin,
    focusThickness, form, horizontalCenter, itemRenderer, left,
    legendMarkerRenderer, lineSegmentRenderer, lineStroke, right,
    stroke, themeColor, top, and verticalCenter.
    I'm not sure if all of those worked under Flex 2.0.0, but
    "form" definately did. Are we not allowed to set styles that way
    under Flex 2.0.1? I didn't see anything to that effect in the
    changelog.
    Also, curiously, the style "radius" does work... but it's the
    only one.
    Paul.

  • Mandatory attribute property missing problem

    Hi All,
    I tried to do the simple display output, but it can't work.
    My code is as below;
    <HTML>
    <BODY bgColor="#c8d8f8>
    <form action="webapps\ROOT\form.jsp" method=POST>
    <center>
    <table cellpadding=4 cellspacing=2 border=0>
    <th bgco;or="#CCCCFF" colspan=2>
    <font size=5>User Registration</font>
    </th>
    <tr>
    <td valign=top>
    <b>First Name</b>
    <br>
    <input type="text" name="LName" size=15"></td>
    <td valign=top>
    <b>Full Name</b>
    <br>
    <input type="text" name="FName" size=15"></td>
    </tr>
    <tr>
    <td valign=top>
    <b>Password</b>
    <br>
    <input type="text" name="Passwd" size=15"></td>
    <td valign=top>
    <b>Telephone</b>
    <br>
    <input type="text" name="Tel" size=15"></td>
    </tr>
    <tr>
    <td valign=top>
    <b>Password</b>
    <br>
    <input type="text" name="Passwd" size=15"></td>
    <td valign=top>
    <b>Telephone</b>
    <br>
    <input type="text" name="Tel" size=15"></td>
    </tr>
    <tr>
    <td valign=top>
    <b>Titile</b>
    <br>
    <input type="text" name="Title" size=15"></td>
    <td valign=top>
    <b>Department</b>
    <br>
    <input type="text" name="Dept" size=15"></td>
    </tr>
    <tr>
    <td valign=top>
    <b>Email</b>
    <br>
    <input type="text" name="Email" size=15"></td>
    <td valign=top>
    <b>Access</b>
    <br>
    <input type="text" name="Accesstype" size=15"></td>
    </tr>
    <%-- Create the bean only when the form is posted --%>
    <%
    if (request.getMethod().equals("POST")) {
    %>
    <jsp:useBean id="formHandler" class="com.jguru.FormBean">
    <jsp:setProperty name="formHandler" property="*"/>
    </jsp:useBean>
    <p>
    <hr>
    <font color=red>
    You submitted : <p>
    <b>Login Name:</b><br>
    <jsp:getProperty name="formHandler" pripoerty="LName"/><br>
    <b>Full Name:</b><br>
    <jsp:getProperty name="formHandler" property="FName"/><br>
    <b>Password:</b><br>
    <jsp:getProperty name="formHandler" property="Passwd">/><br>
    <b>Telephone:</b><br>
    <jsp:getProperty name="formHandler" property="Tel">/><br>
    <b>Title:</b><br>
    <jsp:getProperty name="formHandler" property="Title">/><br>
    <b>Department:</b><br>
    <jsp:getProperty name="formHandler" property="Dept">/><br>
    <b>Email:</b><br>
    <jsp:getProperty name="formHandler" property="Email">/><br>
    <b>Access:</b><br>
    <jsp:getProperty name="formHandler" property="Accesstype">/><br>
    <%
    %>
    </font>
    </body>
    </html>
    The error message is
    Internal Servlet error
    org.apache.jasper.compiler.ParseException: getProperty:Mandatory attribute property missing
    Thanks in advance for any assistance.

    Nick,
    Thanks for your help.
    But I also face another problem that is
    "unable to load class com.jguru.FormBean" when I tried to call another jsp.
    Here are my code :
    package com.jguru;
    public class FormBean {
    private String LName;
    private String FName;
    private String Passwd;
    private String Tel;
    private String Title;
    private String Dept;
    private String Email;
    private String Accesstype;
    public FormBean() {
    LName="";
    FName="";
    Passwd="";
    Tel="";
    Title="";
    Dept="";
    Email="";
    Accesstype="";
    public String getLName() {
    return LName;
    public String getFName() {
    return FName;
    public String getPasswd() {
    return Passwd;
    public String getTel() {
    return Tel;
    public String getTitle() {
    return Title;
    public String getDept() {
    return Dept;
    public String getEmail() {
    return Email;
    public String getAccesstype() {
    return Accesstype;
    public void setLName(String x) {
    LName = x;
    public void setFName(String x) {
    FName = x;
    public void setPasswd(String x) {
    Passwd = x;
    public void setTel(String x) {
    Tel = x;
    public void setTitle(String x) {
    Title = x;
    public void setDept(String x) {
    Dept = x;
    public void setEmail(String x) {
    Email = x;
    public void setAccesstype(String x) {
    Accesstype = x;
    Thanks.

  • How to map a custom enum list to a custom form property in an extended incident class

    Hi,
    I'm struggeling to understand how to map a custom enum list to a custom form property in an extended incident class.
    Here's what i want to have happen:
    I am going to publish a request offering on my SMPortal for allowing users to submit basic IT incidents. I want the form to include "Whom does this problem affect" (answers(This is the custom enum list): Me, Multiple Users, Whole department or Whole
    company), "What is the problem about", "Description" and "Attachments".
    Here's what i've done:
    In the authoring tool i created a MP for the custom enum list and put only the list in it. I sealed the MP and imported it.
    I created another unsealed MP called TST.Incident.Library for storing incident library customizations and extended the incident class to add an extension class i called ClassExtension_Affected scope with a custom property i called AffectedScope. Then i am trying
    to set the datatype of this property to "list". In the "select a list" dialog i cannot chose my previously sealed MP with the custom enum list in it. Why?
    - Do i need to scratch the sealed MP and put the custom enum list in the latter TST.Incident.Library MP instead?
    - If so, can i do that and keep this MP unsealed, or will i get an error on import saying "Unsealed management packs should not contain type definitions"
    - Should i create one sealed MP for both the custom enum list and the extension class + custom property?

    Hi,
    Authoring Tool simply isn't informed about your list. Open the sealed management pack where you define the root of the list in the Authoring Tool and in the same time open TST.Incident.Library. You will have two opened MPs in the Authoring
    Tool and be able to add a custom list for your custom field.
    Cheers,
    Marat
    Site: www.scutils.com  Twitter:
      LinkedIn:
      Facebook:

  • Custom tag SetProperty: Mandatory attribute property missing

    Ok, first some code. Here's the contents of my displayCollection.tag:
    <%@ tag body-content="scriptless" import="com.serco.inquire.*" %>
    <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
    <%@ attribute name="mgr" required="true" %>
    <jsp:useBean id="irc" scope="session" class="com.serco.inquire.irCollection">
      <jsp:setProperty name="mgrid" value="${mgr}" />
    </jsp:useBean>
    ${irc.mgrid}Here's the JSP I'm calling it from (myq.jsp):
    <%@page language="java" import="java.util.*,com.serco.inquire.*" %>
    <%@ taglib prefix="inq" tagdir="/WEB-INF/tags" %>
    <inq:displayCollection mgr="Chris Novish" />Here's the java class for irCollection (used in the tag file):
    package com.serco.inquire;
    import java.sql.*;
    import java.util.*;
    public class irCollection {
         public String mgrid;
         public irCollection() {
              super();
         public void setMgrid(String datum) {
              this.mgrid = datum;
         public String getMgrid() {
              return this.mgrid;
    }And finally, here's the error I get when i try to run myq.jsp:
    org.apache.jasper.JasperException: /WEB-INF/tags/displayCollection.tag(7,2) SetProperty: Mandatory attribute property missing     org.apache.jasper.compiler.DefaultErrorHandler.jspError(DefaultErrorHandler.java:41)
         org.apache.jasper.compiler.ErrorDispatcher.dispatch(ErrorDispatcher.java:407)
         org.apache.jasper.compiler.ErrorDispatcher.jspError(ErrorDispatcher.java:198)
         org.apache.jasper.compiler.JspUtil.checkAttributes(JspUtil.java:174)
         org.apache.jasper.compiler.Validator$ValidateVisitor.visit(Validator.java:595)
         org.apache.jasper.compiler.Node$SetProperty.accept(Node.java:1150)
         org.apache.jasper.compiler.Node$Nodes.visit(Node.java:2376)
         org.apache.jasper.compiler.Node$Visitor.visitBody(Node.java:2428)
         org.apache.jasper.compiler.Validator$ValidateVisitor.visit(Validator.java:647)
         org.apache.jasper.compiler.Node$UseBean.accept(Node.java:1182)
         org.apache.jasper.compiler.Node$Nodes.visit(Node.java:2376)
         org.apache.jasper.compiler.Node$Visitor.visitBody(Node.java:2428)
         org.apache.jasper.compiler.Node$Visitor.visit(Node.java:2434)
         org.apache.jasper.compiler.Node$Root.accept(Node.java:475)
         org.apache.jasper.compiler.Node$Nodes.visit(Node.java:2376)
         org.apache.jasper.compiler.Validator.validateExDirectives(Validator.java:1789)
         org.apache.jasper.compiler.Compiler.generateJava(Compiler.java:216)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:372)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:352)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:339)
         org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:594)
         org.apache.jasper.servlet.JspServletWrapper.loadTagFile(JspServletWrapper.java:231)
         org.apache.jasper.compiler.TagFileProcessor.loadTagFile(TagFileProcessor.java:577)
         org.apache.jasper.compiler.TagFileProcessor.access$000(TagFileProcessor.java:48)
         org.apache.jasper.compiler.TagFileProcessor$TagFileLoaderVisitor.visit(TagFileProcessor.java:642)
         org.apache.jasper.compiler.Node$CustomTag.accept(Node.java:1539)
         org.apache.jasper.compiler.Node$Nodes.visit(Node.java:2376)
         org.apache.jasper.compiler.Node$Visitor.visitBody(Node.java:2428)
         org.apache.jasper.compiler.Node$Visitor.visit(Node.java:2434)
         org.apache.jasper.compiler.Node$Root.accept(Node.java:475)
         org.apache.jasper.compiler.Node$Nodes.visit(Node.java:2376)
         org.apache.jasper.compiler.TagFileProcessor.loadTagFiles(TagFileProcessor.java:660)
         org.apache.jasper.compiler.Compiler.generateJava(Compiler.java:228)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:372)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:352)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:339)
         org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:594)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:344)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:391)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:334)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:722)>
    as far as I can tell, the attribute mgr is set in myq.jsp when it invokes displayCollection.tag, and displayCOllection.tag's only attribute (required) is mgr. so uhm... what do I misunderstand?

    Nick,
    Thanks for your help.
    But I also face another problem that is
    "unable to load class com.jguru.FormBean" when I tried to call another jsp.
    Here are my code :
    package com.jguru;
    public class FormBean {
    private String LName;
    private String FName;
    private String Passwd;
    private String Tel;
    private String Title;
    private String Dept;
    private String Email;
    private String Accesstype;
    public FormBean() {
    LName="";
    FName="";
    Passwd="";
    Tel="";
    Title="";
    Dept="";
    Email="";
    Accesstype="";
    public String getLName() {
    return LName;
    public String getFName() {
    return FName;
    public String getPasswd() {
    return Passwd;
    public String getTel() {
    return Tel;
    public String getTitle() {
    return Title;
    public String getDept() {
    return Dept;
    public String getEmail() {
    return Email;
    public String getAccesstype() {
    return Accesstype;
    public void setLName(String x) {
    LName = x;
    public void setFName(String x) {
    FName = x;
    public void setPasswd(String x) {
    Passwd = x;
    public void setTel(String x) {
    Tel = x;
    public void setTitle(String x) {
    Title = x;
    public void setDept(String x) {
    Dept = x;
    public void setEmail(String x) {
    Email = x;
    public void setAccesstype(String x) {
    Accesstype = x;
    Thanks.

  • Control form is invalid ,start form is missing error in Sapscript

    Hello All,
                  We have created a Zoutput device in which we r giving driver program and form name.when i try to issue the output using vf03 i m geeting the error as control form is invalid start form is missing TD 443.
    Regards.
    Siddhesh

    Hi Siddesh,
    Check the control_form in the driver program.Parameter which your passing for the output options is wrong check with it.
    [Control_form|http://help.sap.com/saphelp_nw70/helpdata/en/d6/0dba1a494511d182b70000e829fbfe/frameset.htm]
    Regards,
    Sravanthi

  • Form property doesn't copy

    Hello Friends,
    I want to Copy the Forms's Property named "Coordinate System"
    but it doesn't copy
    It is Very necessary for me to copy.
    Any Idea !!!!
    So, any idea to copy that property.
    Thank You,
    Chandan

    hello,
    Rosario Vigilante
    it means i neither copy the form property "COORDINATE_SYSTEM " nor set it with programmatically .right !!!!
    so, it is the bug of forms 6i .
    Is there any other way to access this property ?
    Thank You,
    Chandan

  • FORM PROPERTY CHANGES

    In forms 6i,
    Property of field in forms changes automatically. This
    happens even when the property of field is set by property class
    and also for other items.
    I am unable to understand the problem in this. Has anyone faced
    problem like this. Please reply us back on this.

    We converted forms 4.5 version to forms 6i. A new width need
    to be changed from varchar2(5) to varchar2(12). I made the
    change in the form by setting the form property width to 12.
    When i rechecked the field after some time, the width changed
    back to the 5. Another major problem is database Yes/No
    property for fields also changes drastically. Certain control
    fields are set to database yes automatically. It would be of
    great help if you can help us in sorting out this problem.
    Regards
    Raji

  • Forms property 'Maximum Query Time'

    Running Forms 6.0
    I would like to use the forms property
    'Maximum Query Time'
    It doesn't seem to work.
    Do I have to make some kind of setup on the server?
    What unit is 'Maximum Query Time' - seconds?
    - Flemming
    null

    Hello pradeepantony,
    According to the help file, that property is:
    Provides the option to abort a query when the elapsed time of the query (in seconds) exceeds the value of this property.
    How you would use it would be if you did not want your user to sit and wait a significant amount of time while a query executes. Some processes can take a fair amount of time on a busy database. Setting this property will assure your user will not wait any longer than the number of seconds you set in this property.
    I have a couple of stored procedures that take "many minutes" to execute. If a user had issued a query against a table that one of my stored procedures had locked and I had set this parameter, the screen would abort the query and not wait for my stored procedure to complete. Otherwise, the user would have to wait until the database freed up the table before completing the query.
    Hope this helps,
    Don.
    You can reward this reply by marking it as either Helpful or Correct :)

  • COMPLETLY FORM TAB MISSING

    Hi Expertes,
    What is Completley Form Tab missing in portal.What is form tab.
    Thanks
    nimmagadda

    Chakri,
    can you explain the scenario in detail
    Thanks
    Bala Duvvuri

  • 12.1.0.3 Agent Upgrade shows agent Not Upgradable with Oracle Home Property Missing

    I have completed upgrading my Enterprise Manager OMS from 12.1.0.1 to 12.1.0.3 and am not in the process of upgrading the agents. Several agents show agent as not upgradable with error Oracle Home Property Missing and I am having problems trying to resolve that. In addition to the information in Chapter 5 of the upgrade guide I have found Metalink notes 1564380.1 & 1576084.1 and am trying to follow them.
    Looking at the targets.xml on one machine I find -
    <Target TYPE="oracle_home" NAME="cannon-columbo_cluster_home" IDENTIFIER="TARGET_GUID=615AE33355A4D531DBFC35831C2A2952">
    <Target TYPE="oracle_home" NAME="mothpa.ucdavis.edu_mothpa1_oracle_database_home" IDENTIFIER="TARGET_GUID=DFE64CFD805C3C3F88E20EE0E74E556F">
    <Target TYPE="oracle_home" NAME="LISTENER_SCAN1_cannon-columbo_oracle_listener_home" IDENTIFIER="TARGET_GUID=964A37630D9E7E321E0EA845B79F5CD7">
    and following the notes I use emctl and run runCollection -
    ./emctl control agent runCollection mothpa.ucdavis.edu_mothpa1_oracle_database_home:oracle_home oracle_home_config
    But the console still shows Oracle Home Property Missing. emctl listtargets shows -
    mothpa1:product/agent12g/agent_inst/bin->./emctl config agent listtargets
    Oracle Enterprise Manager 12c Cloud Control 12.1.0.1.0
    Copyright (c) 1996, 2012 Oracle Corporation.  All rights reserved.
    [cannon.ucdavis.edu:3872, oracle_emd]
    [LISTENER_cannon.ucdavis.edu, oracle_listener]
    [cannon-columbo_cluster_home, oracle_home]
    [mothpa.ucdavis.edu_mothpa1_oracle_database_home, oracle_home]
    [LISTENER_SCAN1_cannon-columbo_oracle_listener_home, oracle_home]
    [cannon.ucdavis.edu, host]
    [mothpa.ucdavis.edu, rac_database]
    [cannon-columbo, cluster]
    [has_cannon.ucdavis.edu, has]
    [ricep1_ricep11, oracle_database]
    [mothpa_mothpa1, oracle_database]
    [mothpa, rac_database]
    [ricep1, rac_database]
    [+ASM1_cannon.ucdavis.edu, osm_instance]
    [+ASM_cannon-columbo, osm_cluster]
    [LISTENER_SCAN1_cannon-columbo, oracle_listener]
    I have found some information pertaining to promoting targets but I don't understand that very well, essentially how to know if a target needs to be promoted. One note suggested running repvfy which I need to do. I will download it and run it to see if that helps but at the moment I am puzzled and seeking assistance. Any suggestions gratefully appreciated.
    Thank you.
    Bill Wagman

    I will do so, thank you.
    Bill Wagman

  • MissingRequiredPropertyException: Required property missing. :[SMTP_FROM]

    Hi,
    I am trying to mail bipublisher reports using delivery channel as 'Email', but getting following exception:
    Where should I mention SMTP_FROM value ? and how?
    I have mentioned Email From Address in Admin>Delivery Configuration tab.
    Please help.
    [042811_112430820][oracle.apps.xdo.batch.DeliveryHelper][EXCEPTION] oracle.apps.xdo.delivery.MissingRequiredPropertyException: Required property missing. Property name :[SMTP_FROM]
    at oracle.apps.xdo.delivery.AbstractDeliveryRequest.validateProperties(Unknown Source)
    at oracle.apps.xdo.delivery.AbstractDeliveryRequest.submit(Unknown Source)
    at oracle.apps.xdo.batch.DeliveryHelper.submitRequests(Unknown Source)
    at oracle.apps.xdo.batch.bursting.DocumentDelivery.submitEnterpriseDeliveryRequest(Unknown Source)
    at oracle.apps.xdo.batch.BurstingProcessorEngine.addDocument2Queue(Unknown Source)
    at oracle.apps.xdo.batch.BurstingProcessorEngine.createBurstingDocument(Unknown Source)
    at oracle.apps.xdo.batch.BurstingProcessorEngine.endDocument(Unknown Source)
    at oracle.xml.parser.v2.XMLContentHandler.endDocument(XMLContentHandler.java:119)
    at oracle.xml.parser.v2.NonValidatingParser.parseDocument(NonValidatingParser.java:311)
    at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java:263)
    at oracle.apps.xdo.batch.BurstingProcessorEngine.burstingRequest(Unknown Source)
    at oracle.apps.xdo.batch.BurstingProcessorEngine.process(Unknown Source)
    at oracle.apps.xdo.servlet.scheduler.XDOJob.runBurstingReport(XDOJob.java:2008)
    at oracle.apps.xdo.servlet.scheduler.XDOJob.execute(XDOJob.java:358)
    at org.quartz.core.JobRunShell.run(JobRunShell.java:195)
    at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:520)
    Edited by: user12780406 on Apr 27, 2011 11:40 PM
    Edited by: user12780406 on Apr 27, 2011 11:40 PM

    This is my bursting query. Please suggest changes..to avoid problem of Missing Property Required SMTP_HOST.
    <burst enabled="true">
    <property name="BURSTING_NODE" value="/A/LIST_S/S/key"/>
    <property name="DELIVERY_KEY" value="/A/LIST_S/S/key"/>
    <dataSet>
    <sql dataSourceRef="DATA">
    <![CDATA[SELECT
    distinct (key) KEY, 
    'Template' AS TEMPLATE,
    'RTF' TEMPLATE_FORMAT,
    'en-US' LOCALE,
    'Excel' OUTPUT_FORMAT,
    'EMAIL' DEL_CHANNEL,
    '[email protected]' AS PARAMETER1,
    '' AS PARAMETER2,
    '' PARAMETER3,
    '' PARAMETER4,
    '' PARAMETER5,
    '' PARAMETER6,
    '' PARAMETER7
    from TABLE               ]]>
    </sql>
    </dataSet>
    </burst>

  • File -- Export in oracle apps forms- headings missing

    We have a custom form for our custom billing processes. It lists all the draft invoices that are ready to be released along with multiple custom fields. We are using File -> Export to export the data to excel file.
    once exported, the some of the column headings are missing in the excel file. can someone help?
    Thanks!

    Hi,
    This problem is because of the field heading.
    So You have done like this first creating a text item and the you will manually create a heading using Text correct.
    Don't do that, delete that and go to the property palette and give the Item heading in the PROMPT and check now its will work.
    Thanks & Regards
    Srikkanth    

  • Adobe Form; Fields missing in form response file & .csv export

    I created a form in Adobe Livecycle 8 and everything was working fine.  Our company upgraded to Adobe Acrobat Pro 9 and now when I receive a form response via email, some of the data elements to not show up in the 'response file', therefore the data elements cannot be exported into excel.  I am using 'compile returned forms' and following the wizard so I don't know what I'm missing.  I am at a loss and am under a time crunch to get this fixed.  Any help would be appreciated!

    SOLVED
    No errors when I go on the page for upload.
    I solved by restarting the portal.
    Best regard

  • Inline text-shadow style property missing

    Hi, I'm wondering if anyone has come across this as I'm at a loss trying to debug it.
    I create a composition with text that has a text-shadow. The text shadow is there when I preview in IE11. I upload to my own site and it works fine.
    Update: I've checked the composition in the LCMS on other browsers and the text-shadow is there. Looks like it could be an IE issue.
    However, when I upload to my clients LCMS, all works correctly, except there are no text-shadows. When I inspect the code produced, the inline text-shadow style property is missing i.e. it is not hard coded in! Everything else is as expected.
    In order to deploy the composition to my clients LCMS, I have to change some image url's but otherwise, there are no differences.
    I can't work out why the JavaScript is not writing the text-shadow to the elements.
    Does anyone know where I can put checks in my JS to see what is happening?
    Thanks for any help.
    Cheers,
    Patrick

    Of course, text shadows are not supported in IE9 in particular. I am not sure whether filter is still supported though. You might want to check that out.
    Try using filter instead in your css code like:
    filter: progid:DXImageTransform.Microsoft.Shadow(color=#000000,direction=45);
    Note: keep text-shadow for the other browsers too.
    Hope it works but I make no promise.

Maybe you are looking for