08-23-2023, 03:21 AM
(This post was last modified: 08-23-2023, 08:17 PM by Alexandre Machado.)
There is no hard coded limit for this in IntraWeb, but everything is limited.
Adding thousands of elements with complex positioning logic into one single page will make the browser struggle at each resize and redraw.
Imagine if you add 2000 images to a VCL form, they all aligned to right/left/top/whatever with different parents. The form usability will be basically garbage too especially while resizing. Redrawing a form would take forever.
Having said that, if there aren't any conflicts with naming it should just work regardless of the poor performance.
I have a test case with 500 checkboxes in one single page, each one with precise positioning, and the performance is more than acceptable (even though I don't recommend doing that).
In order to detect any issues with your example I'd need to have a reproducible test case.
Adding thousands of elements with complex positioning logic into one single page will make the browser struggle at each resize and redraw.
Imagine if you add 2000 images to a VCL form, they all aligned to right/left/top/whatever with different parents. The form usability will be basically garbage too especially while resizing. Redrawing a form would take forever.
Having said that, if there aren't any conflicts with naming it should just work regardless of the poor performance.
I have a test case with 500 checkboxes in one single page, each one with precise positioning, and the performance is more than acceptable (even though I don't recommend doing that).
In order to detect any issues with your example I'd need to have a reproducible test case.

