Hello,
My grid contains only template columns which are built runtime. Also I create custom header template, like this:
Sys.WebForms.PageRequestManagerServerErrorException: "/UpeWeb.ASPNET/Telerik.Web.UI.WebResource.axd" is not a valid script path. Path must have ".js" extension.
I'm not sure this is a correct translation, because I see it on my native language, but you should get an idea of what's going on. Looks like it happened because of new AJAX control made by me from scratch. It's of CompositeControl type and implements IScriptControl. And each time there's a postback on page, I receive a message like this.
Thank you.
My grid contains only template columns which are built runtime. Also I create custom header template, like this:
public void InstantiateIn(Control container) { LinkButton label; if (_item != null) { label = new LinkButton() { Text = _item.caption }; CssStyle style = _styleBuilder.CreateStyle(_item.f_name + "_header", _item.RunTimeColumnInformation. HeaderAppearance); if (_styles.Find(s => s.Name == style.Name) == null) { _styles.Add(style); } ((GridTableHeaderCell)container).CssClass = style.Name; } else label = new LinkButton() { Text = _caption }; label.CommandName = "Sort"; label.CommandArgument = _item.user_name; container.Controls.Add(label); }Each time I click header, I receive a message
Sys.WebForms.PageRequestManagerServerErrorException: "/UpeWeb.ASPNET/Telerik.Web.UI.WebResource.axd" is not a valid script path. Path must have ".js" extension.
I'm not sure this is a correct translation, because I see it on my native language, but you should get an idea of what's going on. Looks like it happened because of new AJAX control made by me from scratch. It's of CompositeControl type and implements IScriptControl. And each time there's a postback on page, I receive a message like this.
Thank you.