Icon View Incident Report

Serious Serious
Reported By: Eivind Brenne [N/A]
Reported On: 9/20/2022
For: Version 3.02 Build 7
# 4902 Modifying a Column Value Twice Results in Data-Bound Controls Not Updating on Second Modification

When setting a value for a dataset column in code the data aware fields does not update correctly. The code below demonstrates:




Only AAAAA is shown in its connected data aware controls, but the column has BBBBB by calling ShowMessage(DataSet1.Columns['COL1'].AsString).

The only way to temporary fix this is by calling DataSet1. Save between each time a column has been assigned a new value. However, this can also have som negativ effects if other application structure depends on it

if DataSet1.State = dsBrowse then
  DataSet1.Update;
  DataSet1.Columns['COL1'].AsString := 'AAAAA';
  DataSet1.Columns['COL1'].AsString := 'BBBBB';



Resolution Resolution
Fixed Problem on 10/18/2022 in version 3.02 build 8


Products Affected Products Affected
Elevate Web Builder
Elevate Web Builder Trial

Image