04-18-2023, 09:09 AM
(04-18-2023, 02:37 AM)Alexandre Machado Wrote: Please update to IW 15.3.3. It will fix this issue: https://www.atozed.com/2023/04/intraweb-15-3-3/
Hi Alexandre,
thanks for the fast fix.
But there is another problem:
procedure TFormMain.IWButton2AsyncClick(Sender: TObject; EventParams: TStringList);
var
R, C: integer;
begin
for R := 0 to pred(IWGrid1.RowCount ) do for C := 0 to pred(IWGrid1.ColumnCount) do begin
IWGrid1.Cell[R, C].Control.Enabled := not IWGrid1.Cell[R, C].Control.Enabled; // has no effect - also not when using Invalidate or RefreshAsyncRender
if IWGrid1.Cell[R, C].Control.Enabled then IWGrid1.Cell[R, C].Control.Font.Style := [fsBold] else IWGrid1.Cell[R, C].Control.Font.Style := []; // this works
end;
end;
The way to success is always under construction ... but i see a light at the end of the tunnel

