iSeller Commerce
iSeller POS Retail
iSeller POS F&B
iSeller POS Express
Crosslight
WebUI
ClientUI
What's New
Download Trial
Web Solution
Mobile Solution
Enterprise Solution
Custom Development
Blog
Community
Latest Development Blogs
ForumPostTopic
Browse By Tag
While using DevForce V 6.1.3.1 with UxGrid , I have come across a problem
IRevertibleChangeTracking is not implemented on IdeaBlade.EntityModel.Entity
Hence the existing code in EditableDataRepository.cs shown below
public virtual void RejectChanges(T entity) { IRevertibleChangeTracking revertible = (IRevertibleChangeTracking)entity; revertible.RejectChanges(); } has to be modified as
public virtual void RejectChanges(T entity) { IRevertibleChangeTracking revertible = (IRevertibleChangeTracking)entity; revertible.RejectChanges(); }
public virtual void RejectChanges(T entity) { // Change on 8/Nov/2011 by Bala for DevForce version 6.1.3.1 IRevertibleChangeTracking revertible = (IRevertibleChangeTracking)entity.EntityAspect; revertible.RejectChanges(); } Hope this Helps Regards Balachander
public virtual void RejectChanges(T entity) { // Change on 8/Nov/2011 by Bala for DevForce version 6.1.3.1 IRevertibleChangeTracking revertible = (IRevertibleChangeTracking)entity.EntityAspect; revertible.RejectChanges(); }
Hope this Helps
Regards
Balachander
Hello Balachander,
Yes, we have migrated the code in here for DevForce 6.1.3.1 which would be available in our R2 release. All the next template should have this code:
public virtual void RejectChanges(T entity) { entity.EntityAspect.RejectChanges(); }
Regards,Handy
or
Choose this if you're already a member of Intersoft Community Forum. You can link your OpenID account to your existing Intersoft Social ID.
Choose this if you don't have an Intersoft account yet. Your authenticated OpenID will be automatically linked to your new Intersoft account.
Enter your Wordpress Blogname