TWebForm OnResize

Hi,

When I change form size by change browser size window event OnResize not fires, why?

Regards, 

I cannot reproduce this.
Was retested with a form OnResize event handler and TWebListBox:

procedure TForm1.WebFormResize(Sender: TObject);
begin
  weblistbox1.Items.Add('resize');
end;

This gets triggered as the browser window is resized.
Hi,

Try this:
1) Create web application with 2 forms
2) From Form1 show Form2
3) Resize browser and you should see that onResize is fired only on Form1 but on Form2 not, why when I resize Form2?

Regards,


We traced this issue and fixed it. The next update will address this.