I try to delete a record from an ultragrid with this two examples:
(1)
ultragrid1:rows:Item[5]:Delete()
(2)
ultragrid1:rows:Item[10]:Selected = true
ultragrid1:DeleteSelectedRows(false).
In both cases the last record in the ultragrid is deleted. When I select two records with the Selected method, then the last two records in the ultragrid are deleted. Somewhere the recordsscope is lost, the delete method points to the wrong record. Can anybody help me?
HI i m vb.net developer i delete the selected row through that way in ultragrid
Dim row As UltraGridRow For Each row In Me.UltraGrid1.Selected.Rows
row.Delete(False) Me.UltraGrid1.UpdateData() Next
thanks
Ok, thanks for your help, Thijs!
Hi,
I have also post this issue on Progress Communities. Up til now I get only reactions that confirm the described behaviour. Its probably a bug in OpenEdge 10.2A and 10.2B. When I have found a proper solution I will post it here!
Thijs
Thijs, did you find a solution? I'm having the exact same problem at the moment. Using OpenEdge (Architect) 10.2A02 with Infragistics NetAdvantage for .NET v2008 Vol 1 CLR 2.0.
Maybe I am doing something wrong, I'm quitte a newbe to Infragistics. Anyway, thanks for the help.