Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by Saurabh Saxena on Jan 20, 2010 03:40
open dhtmlx forum
Retrieve Windows Id

Hello,

I am facing the problem, that I am setting the window Id dyanmically while creating a new window.

In below example the windowId is dynamic.

createWindow(windowId, locationX, locationY, width, height);

Also I am loading the content as a URL which is a JSP page. From the JSP page if I need to call a javascript method, where I need the "ID" of window, how can I retrieve it.

I tried getId() function but not working correctly.

Please provide the input.

Thanks,
Saurabh
Answer posted by Alex (support) on Jan 20, 2010 05:21

Hello

window is available by its object or id:

var windowObject = dhxWins.createWindow(windowId, locationX, locationY, width, height);

There are no other mether to get window.

Id can be got by var id = windowObject.getId() method

 

Answer posted on Jan 20, 2010 06:35

Hello Alex,

The scenario is that we need:

We are calling a Javascript method inside a popuped Window. This window has a JSP loaded inside it.

From within this JSP we are calling a Javascript method which is not present in the parent page where we are creating the window using createWindow(...) of dhtmlxwindow

So the issueis that we are within the JSP which is present inside the dhtmlx popup window, so still the querry is same, How to retreive the windowobject or window-id ?

Thanks

Saurabh

 

Answer posted by Alex (support) on Jan 20, 2010 06:52
You can try to use the parent.windowObject approach