Hi,
We are currently running a rather old release of your product - 15.2 - and hope to upgrading that shortly to your latest release.
We currently have the following code in place (I believe Syncfusion initially provided this to address an issue we were having at the time):
var version = Number(jsonData.version);
if (isNaN(version)) {
version = jsonData.version.split(".");
//get the short form version
jsonDataVersion = version = Number(version[0] + "." + version[1]);
}
if (!NE_User) {
if (jsonDataVersion < 15.2) {
diagram.upgrade(jsonData);
}
}
My question is: do we need to continue doing this?
What exactly does the upgrade actually do?
Thanks for any assistance you can provide on this subject.
Jim