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

  1. #1

    Default CFGRID hyperlink

    Does anyone know if it is possible to have a cfgrid(Flash) cell constructed in CF, have the ability to link to another page?
    bal_logicmanager Guest

  2. Similar Questions and Discussions

    1. cfgrid
      I use a ldap to populate my cfgrid. Therefore, I do not use any cfcolumns within the cfgrid. How would I adjust the widths of the columns to fit...
    2. <CFGRID>
      I'm experiencing a strange behavior using cfgrid format="applet". If the selectmode="Edit" and I do specify a selectcolor, the field clicked on will...
    3. CFGrid yet another question
      Ok, I have spent days on this and have gotten nowhere. Can somebody help? I have a CFGrid displaying information from a database. I would like a...
    4. Help with CFGrid
      How can I get a hyperlinked file deleted from the server when the delete action occurs in the Grid, which the action is also followed through to the...
    5. Dynamically Hyperlink and Event Handler for the Hyperlink ?
      Hi, I´m creating an Hyperlink dynamically for my DataGrid: HyperLink hl = new HyperLink(); hl.Text = "MyLink"; hl.NavigateUrl = "#";...
  3. #2

    Default Re: CFGRID hyperlink

    Did you get an answer to this question? I have the same question too.
    worldnet5 Guest

  4. #3

    Default Re: CFGRID hyperlink

    I have not found out anything on this yet.
    bal_logicmanager Guest

  5. #4

    Default Re: CFGRID hyperlink

    Use the following:
    <cfgrid name="myGrid" onchange="getUrl('your url')">

    If you need to reference a column from the selected row, use:
    myGrid.selectedItem.ColumnName

    For example
    getUrl('mypage.cfm?id=' + myGrid.selectedItem.user_id)

    The name of the column is case sensitive.


    JadeBlue Guest

  6. #5

    Default Re: CFGRID hyperlink

    Anyone know how to make only one column a hyperlink rather than the enitre row?

    Much appreciated.
    WillieKmo 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