Is there any way to specify the initial position of a pop-up edit form? The default "upper left hand corner of the grid" doesn't work well with the page layout I'm working on.
You can customize the default position of the PopUp edit form by hooking up the OnPopUpShowing client-side event of RadGrid and changing the location explicitly.
ASPX:
<ClientSettings>
<ClientEvents OnPopUpShowing="PopUpShowing"/>
</ClientSettings>
JavaScript:
<script type="text/javascript">
var popUp;
function PopUpShowing(sender, eventArgs)
{
popUp = eventArgs.get_popUp();
var gridWidth = sender.get_element().offsetWidth;
var gridHeight = sender.get_element().offsetHeight;
var popUpWidth = popUp.style.width.substr(0,popUp.style.width.indexOf("px"));
var popUpHeight = popUp.style.height.substr(0,popUp.style.height.indexOf("px"));