Hi,
We are using Rad window popup. The problem is on opening the popup we get scrollbars. We want to avoid horizontal scrollbar.
We are using the following code.
function OpenLookUp(url,width,Height)
{
var oWindow = window.radopen(url,null);
oWindow.SetSize (width, Height);
}
And we are calling this method from a column in grid.
<rad:GridTemplateColumn>
<ItemTemplate>
<a href="javascript:OpenLookUp('LogDetails.aspx?ProductId=<%#Eval("logId")%>','700','550');">Details</a>
</ItemTemplate>
</rad:GridTemplateColumn>
It happens in all the popups even if the content is very less the scrollbar appears.
Regards,
Bala
