﻿<?xml version="1.0" encoding="utf-8"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0"><channel><title>Intersoft Community - ClientUI - UXGrid and DevForce 6.1.3</title><link>http://www.intersoftsolutions.com/Community/ClientUI/UXGrid-and-DevForce-613/</link><description /><generator>http://www.intersoftsolutions.com</generator><language>en</language><copyright>Copyright 2002 - 2015 Intersoft Solutions Corp. All rights reserved.</copyright><ttl>60</ttl><item><title>UXGrid and DevForce 6.1.3</title><link>http://www.intersoftsolutions.com/Community/ClientUI/UXGrid-and-DevForce-613/</link><pubDate>Sun, 13 Nov 2011 21:00:29 GMT</pubDate><dc:creator>handy@intersoftpt.com</dc:creator><category>ClientUI</category><category>UX Grid</category><description>&lt;p&gt;Hello Balachander,&lt;/p&gt;&lt;p&gt;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:&lt;/p&gt;
&lt;p /&gt;&lt;pre&gt; public virtual void RejectChanges(T entity)
 {
            entity.EntityAspect.RejectChanges();            
 }
&lt;/pre&gt;
&lt;p&gt;Regards,&lt;br /&gt;Handy&lt;/p&gt;
&lt;p /&gt;</description></item><item><title>UXGrid and DevForce 6.1.3</title><link>http://www.intersoftsolutions.com/Community/ClientUI/UXGrid-and-DevForce-613/</link><pubDate>Thu, 10 Nov 2011 03:13:07 GMT</pubDate><dc:creator>mlcmds</dc:creator><category>ClientUI</category><category>UX Grid</category><description>&lt;p&gt;While using DevForce V 6.1.3.1 with UxGrid , I have come across a problem &lt;/p&gt;
&lt;p&gt;IRevertibleChangeTracking is not implemented on IdeaBlade.EntityModel.Entity&lt;br /&gt;&lt;/p&gt;&lt;pre style="font-family: consolas; background: white; color: black; font-size: 13px"&gt;Hence the existing code in EditableDataRepository.cs shown below &lt;/pre&gt;&lt;pre style="font-family: consolas; background: white; color: black; font-size: 13px"&gt;&lt;pre&gt; public virtual void RejectChanges(T entity)
        {
            
            IRevertibleChangeTracking revertible = (IRevertibleChangeTracking)entity;
            revertible.RejectChanges();
        }&lt;/pre&gt;

has to be modified as &lt;/pre&gt;&lt;pre style="font-family: consolas; background: white; color: black; font-size: 13px"&gt;&lt;pre&gt; 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();
        }&lt;/pre&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;Hope this Helps&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;Regards&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;Balachander&lt;/p&gt;&lt;/pre&gt;</description></item></channel></rss>