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

  1. #1

    Default CFGRID Properties

    Is it possible to have links on a cfgrid (flash form) so that the user can
    click on an specific row and be sent to a differnt page, if so, can anyone
    provide a sample page of some form of syntax, I know that there is an HREF tag
    but I tried it and it does not work like a link would.

    reya276 Guest

  2. Similar Questions and Discussions

    1. ViewState properties and mapped properties don't work well togethe
      I have a CompositeControl with two types of properties: 1.) Mapped Properties that map directly to a child control's properties (ex.:...
    2. Making Custom Control Properties Visible in Visual Studio's Properties Palette
      I am learning how to use the System.ComponentModel class in VB.NET so that I can add my ASP.NET controls to Visual Studio .NET 2003. I have managed...
    3. <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...
    4. Illustrator properties vs FreeHand properties
      I have to say that after playing around with Illustrator CS, FreeHand wins hands down as far as simplicity goes. I can't believe how many flipping...
    5. properties not showing in properties window at design time
      I created a usercontrol using vb but the properties will not show in the properties pane however the properties show up in the intellisence list....
  3. #2

    Default Re: CFGRID Properties

    Sorry I don't have time for detailed code sample, but this should work if you
    set up a listener on your grid for the onRowPress event: Place this code in a
    function which is called by the onload tag in the cfform
    var listener:Object = {};

    //put the controls in scope to avoid calling _root
    var myGrid:mx.controls.DataGrid = myGrid;

    listener.onRowPress = function(event):Void
    {
    alert('the onRowPress event has been fired. Details are contained in the
    event object');
    getURL("http://www.yahoo.com");

    }

    myGrid.addEventListener('onRowPress',listener);





    bradwood.com 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