Flash forms, grid and accessing currently selected data

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

  1. #1

    Default Flash forms, grid and accessing currently selected data

    Hi,

    I use cfform format flash to display and edit participant information to a
    sport competition. I have a top panel displaying a grid with the list of
    participants.
    When you select a participant in the grid, it displays the detailed
    information in a sub page, where you can edit them.

    On one of these sub pages, i have some checkboxes.
    What i want is:
    Depending on whether the particpant is a men or a women (that's a field celled
    Ctaegory), the checkboxes vary on the sub page.

    what is the path to access my grid data that are currently selected?
    i tried this, but it doesn't work ...

    ------<cfif "{grid1.selectedItem.Category}" IS 'Women' and
    "{grid1.selectedItem.Belt}" IS 'Strong'>


    it says grid1 is unknown ... but all is in the same form .... why is it
    unknown?

    ... any idea on calling these data with the correct syntax?


    screenshot of my page
    [url]http://katapulse-com.tempserv1.clientnshosting.net/vovinam/img/temp.png[/url]

    i forgot to say that of course my grid and my other fields are binded and it
    works fine, but now i'd like to have some checkboxes displayed in the tab below
    if the category of the selected item in the grid is "x" and some other
    checkboxes displayed if the category is "y".

    Any idea?

    Thanks.

    Kat

    superkat Guest

  2. Similar Questions and Discussions

    1. Font Settings in Flash Data grid
      hi, i am newie to flash. Does any one have any ideas on how to edit fonts in the flash datagrid component? Cheers, Sanjay
    2. forms inside data grid
      I meet a quite strange problem. When I output forms insides a dat grids, it seems that some of the forms will not even function when clicked a...
    3. CFMX7 flash forms cfgrid time is two hours ahead in grid
      I can't understand a query to the database and output to a cfgrid inside a flash form. My db is mysql and cfmx7 is the server. The info that I am...
    4. Flash grid tutorial behaving differently with my data
      Hi. I am going throught the 'Code Snippets by Features and Tasks '. I tried the flash grid code and wanted to check it using my data. I setup a...
    5. retrieving text from a selected data grid row cell...
      this was working Dim szMsgNumber = db_grid.SelectedItem.Cells(0).Text until i changed the first column (at index 0) to a ASP:ButtonColumn...
  3. #2

    Default Re: Flash forms, grid and accessing currently selecteddata

    try asfusion blog for check box bindind syntax
    noodleweb Guest

  4. #3

    Default Re: Flash forms, grid and accessing currently selecteddata

    [q]Originally posted by: noodleweb
    try asfusion blog for check box bindind syntax[/q]

    this is the syntax for the checkbox bind: {fieldname.selected}
    Pathel 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