Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
250
is grid.Row.DataChanged still working ?
posted

Hello,

I have an datatable, bound to an UltraWingrid.

The idea is to allow the user to edit all cells he wants in the UltraWingrid.

Once he pressed an "update" button, the modifications will be written to the database.

I was hoping I could use following code (but it doesn't seem to work)

pseudocode ...

for each myrow in ugrid.rows

  select case myrow.datachanged

    case datachanged.added

      'add record to the database

    case datachanged.deleted

      'delete record from the database

   end select

next

I found this sample code at http://devcenter.infragistics.com/Support/KnowledgeBaseArticle.aspx?ArticleID=8272, but it doesn't seem to work...

whatever "changes" the user makes, datachanged is always "false"

thanks in advance for your help

Grtz,

Johnny

 

Parents Reply Children