
_insertClickHandler:
function(e)
{
var modifiedLink = this.getModifiedLink();
if (modifiedLink.title != "") {
var args = new Telerik.Web.UI.EditorCommandEventArgs("LinkManager", null, modifiedLink);
//backwards compatibility
args.realLink = modifiedLink;
Telerik.Web.UI.Dialogs.CommonDialogScript.get_windowReference().close(args);
}
//added codes here
else {
alert(
'please fill the Tooltip field');
$telerik.cancelRawEvent(e);
}
},
But in the ImageManager.axcx, I cannot find the same method. I checked the code and I found the SetImageProperties.axcx have the same method but the method is not added to the insert button event handler.
Please help me out here.
Thanks


<telerik:RadPanelItem runat="server" Font-Bold="True" ForeColor="White" NavigateUrl="https://site.com/app/default.asp?M=2-3&u=<%= uUser_id%>" Text="Event Application"> </telerik:RadPanelItem> Trying to pass the current user ID but I pass: https://site.com/app/default.asp?M=2-3&u=<;%= uUser_id%> instead of: Any ideas? ASP programer learning ASPX