Update Of A Editable Grid

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • avijit_gs
    New Member
    • Aug 2006
    • 2

    Update Of A Editable Grid

    Could any one tell me that how can I update an editable grid with dropdown list as template field for the dynamically created collumns.
  • alagan
    New Member
    • Jul 2007
    • 12

    #2
    Hai,,


    U hav to use Gridview's Rowdatabound event In that

    If e.row.rowstate = normal then

    Add ur dynamic Control Creation here and
    e.row.Cells(ind ex).Controls.Ad d(Created control)

    Endif
    If e.row.rowstate = Edititem then

    Add ur dynamic Control Creation here and
    e.row.Cells(ind ex).Controls.Ad d(Created control)

    Endif

    And so on..

    Hope it will help u

    Comment

    Working...