I use Q4 2006 version:
and a dragdrop.js from one of your examples (grid2grid dragdrop)
All is fine in aspx pages, and up to a point in usercontrols constructed from those aspx pages. (
but one line in the js has "issues", in that it tries to create a var based on the RadAjaxPanel in the window.. bbut returns undefined, and the postback never occurs
(I have the RaisePostBackEvent, and IPostBackEventHandler etc. ) just obviously this does'nt fire as the ajaxpanel is not "found"
Appreciated
thx
Neal
(sample js code is beneath)
and a dragdrop.js from one of your examples (grid2grid dragdrop)
All is fine in aspx pages, and up to a point in usercontrols constructed from those aspx pages. (
but one line in the js has "issues", in that it tries to create a var based on the RadAjaxPanel in the window.. bbut returns undefined, and the postback never occurs
(I have the RaisePostBackEvent, and IPostBackEventHandler etc. ) just obviously this does'nt fire as the ajaxpanel is not "found"
Appreciated
thx
Neal
(sample js code is beneath)
if
(radGridOver != "" && radGridOver != movedRow.Owner.OwnerID)
{
var ajaxPanel = window["RadAjaxPanel1"];
//window.alert("About to invoke ajax callback..." + ajaxPanel);
ajaxPanel.AjaxRequestWithTarget(eventTarget, eventArgument);
}