
Hi, Please I need help!
I have xslt file which i have no clue but html skills, the xslt file is used by our flowcentric application. I wanted to change the dropdowns border style but this can't be done in HTML - so is saw i link where I want the drop down style but it's not in html.
How do i incorporate the following code into my existing Flowcentric xslt file?
[u]Example i got from net - i want to incorporate this to xslt file</u>
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="vertical" verticalAlign="middle" backgroundColor="white">
<mx:Style>
.myComboBoxDropdown {
dropShadowEnabled: true;
shadowDistance: 3;
shadowDirection: "right";
cornerRadius: 5;
}
</mx:Style>
<mx:ComboBox dropdownStyleName="myComboBoxDropdown">
<mx:dataProvider>
<mx:String>one</mx:String>
<mx:String>two</mx:String>
<mx:String>three</mx:String>
<mx:String>four</mx:String>
<mx:String>five</mx:String>
</mx:dataProvider>
</mx:ComboBox>
</mx:Application>

[u]Flowcentric xslt file: </u>
<xsl:when test="$Object/@type[.='drop down' or .='lookup' or .='team select']">
<xsl:call-template name="ListValueType">
<xsl:with-param name="Name" select="$Object/@name" />
<xsl:with-param name="Attributes" select="$Object/Attributes" />
<xsl:with-param name="Options" select="$Object/Options" />
<xsl:with-param name="Value" select="$Object/Value" />
</xsl:call-template>
</xsl:when>
<xsl:template name="ListValueType">
<xsl:param name="Name" />
<xsl:param name="Attributes" />
<xsl:param name="Options" />
<xsl:param name="Value" />
<xsl:element name="asp:dropdownlist">
<xsl:attribute name='id'><xsl:value-of select='$Name' /></xsl:attribute>
<xsl:attribute name='runat'>server</xsl:attribute>
<xsl:for-each select="$Attributes/Attribute">
<xsl:attribute name='{@name}'><xsl:value-of select='.' /></xsl:attribute>
</xsl:for-each>
<xsl:for-each select='$Value/Options/Option'>
<xsl:element name="asp:ListItem">
<xsl:attribute name='Value'><xsl:value-of select='.' /></xsl:attribute>
<xsl:if test="@selected[. = 'true']"><xsl:attribute name='selected'>true</xsl:attribute></xsl:if>
<xsl:value-of select='.' />
</xsl:element>
</xsl:for-each>
</xsl:element>
</xsl:template>
Please Anyone, Help!!!
Regards,
Ismail