can't isolate changes to bound datatable

  • Thread starter Thread starter John Mas
  • Start date Start date
J

John Mas

I have a dataview on a datatable as part of a dataset. I have bound the
controls on my form to the columns in the dataview and when i modify the
fields in the form the datatable gets updated. I know that this is true
because i can repopulate the form from the datatable and i get the new
values.

But when i check if the underlying dataset .haschanges it returns false and
the databletable.getchanges returns nothing and changing the rowstatefilter
for the dataview yields nothing.

what am i missing?

Thanks

John
 
John,

Mostly that is because the data is not yet in the dataset, it sounds strange
however it is.

Use than this

Bindingcontext(dv).endcurrentedit

I hope this helps?

Cor
 
Back
Top