Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
on resize for regions?
#3
You can resolve this using this update (or later version eventually):

https://downloads.atozed.com/intraweb/iw..._BETA2.exe

Then you can add code like this to any IW control which is aligned (and is resized by the splitter). In this case is IWRegion1 region:

procedure TIWForm1.IWAppFormRender(Sender: TObject);
var
js: string;
begin
js := 'var el = IW.$("IWREGION1");' +
'el.OnAfterResize = function (rect) {' +
'alert("IWREGION1 has been resized");' +
'}';
AddToInitProc(js);
end;
Reply


Messages In This Thread
on resize for regions? - by pete@pdmagic.com - 07-07-2019, 09:40 PM
RE: on resize for regions? - by kudzu - 07-22-2019, 04:46 PM
RE: on resize for regions? - by Alexandre Machado - 04-15-2022, 04:15 AM

Forum Jump:


Users browsing this thread: 1 Guest(s)