Ask a Question related to Coldfusion Flash Integration, Design and Development.

  1. #1

    Default Style in FlashForm

    Hi!

    I am preparing some big service and I've got some problems. Right now my
    client want me to change the style of labels, tooltips and icons in flashforms.

    Is there any chance to do this?

    The icons are the icons in the cftree.

    Please help me.

    Regards

    jmail

    j-mail Guest

  2. Similar Questions and Discussions

    1. Clearing Records in FlashForm Grid
      I have a flash form with two grids. When the user clicks on a row in the top grid, the bottom grid is loaded with related data. My customer wants...
    2. lc_undefined error in flashform
      i keep receiving lc_id undefined error whenever flash forms are called. i understand that this has to do with the server not being able to find...
    3. Error with a flashform
      I'm getting this message "A function in the code exceeds the 64K byte limit (actual size = '65604'). Since the problem occurs in the...
    4. FileUpload in FlashForm?
      Hi I work on my Diploma and need a littel help. Can someone tell me if it is possible to integrate a fileupload in a flashform? I just want a few...
    5. Need help with Style conversion from Style object to Style key/value collection.
      I am writing a custom control that derives from the DataGrid control. I would like to apply SelectedItemStyles and ItemStyles for use in my derived...
  3. #2

    Default Re: Style in FlashForm

    Labels can be changed if you put them in a formgroup and apply styles to the
    formgroup. For example...

    <cfform format flash>

    <cfformgroup type="hbox" style="color:red;font-size:15px;">

    <cfinput type="text"
    label="A Label"
    name="name"
    style="color:black;">

    </cfformgroup>


    </cfform>

    This would give you a text box with a red label and a font size of 15px. I put
    style on the textbox itself so that when you type, the text will still appear
    black. I have not tried this with cftree, tooltips or icons. I assume the same
    principle will work

    SamNUK Guest

  4. #3

    Default Re: Style in FlashForm

    *format="flash"
    SamNUK Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139