Skip to main content
Participant
March 18, 2008
Answered

Coldfusion Flash Forms - Border doesn't show up

  • March 18, 2008
  • 2 replies
  • 1123 views
Hello everyone.

In Coldfusion 7, Flash Forms, using the 1.5 Flex engine, the border doesn't appear to show up when used in a cfformgroup tag. Is it not supported?


<cfform format="flash" method="get"width="200" name="sample">

<cfformgroup type="horizontal" height="100" width="400" style="background-color: ##3399FF; border-bottom:##33FF00;" />

</cfform>

Thanks,

Andrew
    This topic has been closed for replies.
    Correct answer The_ScareCrow
    You need to check out the online docs for the form styles

    <cfformgroup type="horizontal" height="100" width="400" style="borderStyle: solid;
    backgroundColor: ##3399FF; borderSides:bottom; borderColor:##33FF00;" />


    CF 7 Flash Form Styles

    Ken

    2 replies

    Andrew14Author
    Participant
    March 19, 2008
    Thanks Ken.
    The_ScareCrowCorrect answer
    Inspiring
    March 18, 2008
    You need to check out the online docs for the form styles

    <cfformgroup type="horizontal" height="100" width="400" style="borderStyle: solid;
    backgroundColor: ##3399FF; borderSides:bottom; borderColor:##33FF00;" />


    CF 7 Flash Form Styles

    Ken