this odd behavior continues, I need help.
Save issue:I call save and the following line returns true as I step through it, yet my values do not get updated. I know the binding is correct because if I change the values in SQL Server itself, I see the updated values in my web page.
Transaction.Save() = MicroFour.StrataFrame.Data.SaveUndoResult.SuccessNavigation:
I removed all but 5 records for testing purposes. The webform properly displays the first record and it will navigate to the second record, upon hitting the "next" button subsequent times nothing happens, the page flickers but no navigation occurs. If I hit "last" it will properly navigate to the last record, then if I hit "prior" it goes back to the first record. Very odd.
I am using....
Transaction.Navigate(MicroFour.StrataFrame.Business.BusinessNavigationDirection.Next)
Transaction.Navigate(MicroFour.StrataFrame.Business.BusinessNavigationDirection.Prior)
Transaction.Navigate(MicroFour.StrataFrame.Business.BusinessNavigationDirection.Last)
Transaction.Edit()
(please note 'transaction' is the name of my BO, no actual transactions are being used here)
This table navigates fine using winforms and the exact same fill methods.
Keith Chisarik