Icon View Incident Report

Serious Serious
Reported By: Paul Coshott
Reported On: 5/25/2022
For: Version 3.02 Build 4
# 4883 Cannot Set the TEdit Text Property Programmatically When the ReadOnly Property is True

I'm seeing a change in the way the TDialogEditComboBox works in relation to the ReadOnly property. I was previously using v 3.01 b4 and with this, if I set the component's ReadOnly to True, the user couldn't type into the control (which is what I want), but I could still set the Text property in code.

Now I can't. I was setting the control's Text and Tag property. I can still set the Tag property, just not the Text.

I need the user to be able to click the button to popup a search dialog, and once the user chooses an item, they are returned to the calling form and I set the Text and Tag property, as follows.

procedure TfPartsPriceCalc.InsertPriceCalc(iPriceCalcId : integer; sDesc : string);
begin
  ePartsCode.Tag := iPriceCalcId;
  ePartsCode.Text := sDesc;
  eCost.SetFocus;
  LoadPriceCalcValues;
end;



Comments Comments
This was caused by some of the changes to un-bound editing in 3.02 to support un-bound grid editing improvements/refactoring.


Resolution Resolution
Fixed Problem on 5/28/2022 in version 3.02 build 5


Products Affected Products Affected
Elevate Web Builder
Elevate Web Builder Trial

Image