Icon View Incident Report

Serious Serious
Reported By: Walter Matte [Tactical Business Corporat
Reported On: 8/14/2016
For: Version 2.04 Build 1
# 4408 The TDatabase LoadTransactions Method Is Not Working Properly

The LoadTransactions has a bug:

Javascript generated in the webdata_tdatabase.$p.loadtransactions = function(value)

Problem: (tempoperationtype <= webdata_otinsert)
should be: (tempoperationtype < webdata_otinsert)

This
if ((tempoperationtype <= webdata_otinsert) || (tempoperationtype > webdata_otdelete))
throw new Error(webcore_translate1("ERR_DATA_TRANSOPTYPE", [inttostr(tempoperationtype)]));

Should be:

if ((tempoperationtype < webdata_otinsert) || (tempoperationtype > webdata_otdelete))
throw new Error(webcore_translate1("ERR_DATA_TRANSOPTYPE", [inttostr(tempoperationtype)]));


Comments Comments
There was also an additional bug related to this problem that was also fixed. It was a problem updating the transaction before/after rows during the loading of the transactions that was caused by read-only columns.


Resolution Resolution
Fixed Problem on 8/14/2016 in version 2.05 build 1


Products Affected Products Affected
Elevate Web Builder
Elevate Web Builder Trial

Image