Nested Layout

Hi all, can I to access from a cell of layout to a control in another cell?. Any idea?

Regards.

Hi,

if you don’t use iframes, you may use document.getElementById(element_id) as usually.

In case of attachURL method (iframes) you may use the following approach:

var cellWindow = parent.layout.cells(cell_id)._frame.contentWindow;
var element = cellWindow.document.getElementById(element_id);