Hi,
- I have a page using a 3 pane layout. One of the panes has a grid attached.
- When a particular column in the grid is selected a dhtmlx window opens using a URL (win_1) which containes a grid in a DIV statement using .
- When a column in this windowed grid is selected a further dhtmlx window opens using a URL (win_2) with a further grid in a DIV statement.
- When a row is selected in this grid (win_2) I want to transfer data from the row to cells in the other grid window (win_1).
- I open both windows using the following:
win_1 = parent.dhxLayout.dhxWins.createWindow(“win_1”, 160, 120, 900, 400);
win_2 = parent.dhxLayout.dhxWins.createWindow(“win_2”, 160, 120, 900, 400); - How do I reference the grid in win_1 so that I can transfer the data from the second grid in win_2? I have tryed using the parent reference but with no success.
Any help would be apprteciated.
Regards
Angus