binding combobox control to datagrid

Ask a Question related to ASP.NET Data Grid Control, Design and Development.

  1. #1

    Default binding combobox control to datagrid

    ,

    i am facing problem with attaching combobox to a cell of a datagrid. namely
    to the cell 3rd row 4 column..
    then the combobox should display that content of that particular cell...

    can anyone help me in this

    Thanks
    Geeta



    geeta Guest

  2. Similar Questions and Discussions

    1. Data Binding using DataSet and ComboBox
      Hi guys, hope someone can help me with this. Seems it should be simple, but it's not, that's why I'm here. I have data loading into a DataSet...
    2. Binding combobox to a cell of a datagrid in windows forms using c
      hi, i am facing problem with datagrid.. i am attaching a combox to a cell of a datagrid.means i want to palce the combox in 4th row 3rd col of ...
    3. Binding a ComboBox to a ViewStack
      Hi all, Anybody have any luck getting a ComboBox to bind to a ViewStack? I'm trying to set it up so that the ComboBox will use the...
    4. data binding and add control in datagrid
      I need to use data binding to bind data to datagrid from DB and add button server control at each row of the record. Is it possible to do so in...
    5. Error Binding DropDownList on EditItem Command of DataGrid Control
      I am sure this has come up before, but I haven't been able to find an answer as of yet. That said, any help is definitely appreciated! I have a...
  3. #2

    Default Re: binding combobox control to datagrid

    Geeta,

    You need to handle PreRender event. In the event handler you can navigate to
    the required cell, create a control (there is no compobox in asp.net, do you
    mean a dropdown list? a textbox?) and add it to the cell's Controls
    collection.

    Eliyahu

    "geeta" <geetapatil@codetheatre.com> wrote in message
    news:e$I6Rhs2FHA.732@TK2MSFTNGP10.phx.gbl...
    > ,
    >
    > i am facing problem with attaching combobox to a cell of a datagrid.
    namely
    > to the cell 3rd row 4 column..
    > then the combobox should display that content of that particular cell...
    >
    > can anyone help me in this
    >
    > Thanks
    > Geeta
    >
    >
    >

    Eliyahu Goldin 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