retrieving text from a selected data grid row cell...

Ask a Question related to ASP.NET General, Design and Development.

  1. #1

    Default 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 from a
    boundcolumn...



    now it just returns blank text every time...



    how do i retrieve text from a buttoncolumn cell??


    Daniel Bass Guest

  2. Similar Questions and Discussions

    1. 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...
    2. Data Grid Dynamic Cell Colors
      I would like to create a Data Grid where the individual cell colors change based on the number in the cell. For example, numbers between 0 and 1...
    3. Data Grid cell press question...
      Ok, I've been working days on this and finally have broke down to ask. I'm importing via coldfusion, information from a database. Like the parks...
    4. --- retrieving text from a selected datagrid 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...
    5. Item Cell Text in grid
      Thanks get the
  3. #2

    Default Re: retrieving text from a selected data grid row cell...

    Dim linkbtnMsgNumber As LinkButton =
    db_grid.SelectedItem.Cells(0).Controls(0)

    Dim szMsgNumber = linkbtnMsgNumber.Text

    "Daniel Bass" <danielbass@postmaster.co.uk> wrote in message
    news:O6xq1GURDHA.940@TK2MSFTNGP11.phx.gbl...
    > this was working
    >
    > Dim szMsgNumber = db_grid.SelectedItem.Cells(0).Text
    >
    >
    >
    > until i changed the first column (at index 0) to a ASP:ButtonColumn from a
    > boundcolumn...
    >
    >
    >
    > now it just returns blank text every time...
    >
    >
    >
    > how do i retrieve text from a buttoncolumn cell??
    >
    >

    Daniel Bass 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