Hi
I have a RadWindow which i would like to have popup on location
300,20
and with a width set to 610 and the height set to maximize to the availheight in the browser (of cause minus this 20)
However this does not work for me, the window gets a height which is much less that the availHeight.
Should i do something else ?
I have a RadWindow which i would like to have popup on location
300,20
and with a width set to 610 and the height set to maximize to the availheight in the browser (of cause minus this 20)
However this does not work for me, the window gets a height which is much less that the availHeight.
Should i do something else ?
function addNewClick() { |
var oWind = $find("<%=RadWindow1.ClientID %>"); |
oWind.moveTo(300, 20); |
oWind.setSize(610, window.availHeight); |
oWind.setUrl("CalculationEdit.aspx?selectedID=0"); |
oWind.show(); |
} |