In the Q3 2015 SP1 release the server-side OnClick event of RadButton is not raised when the following conditions are met:
The issue will be fixed for the official Q1 2016 release and the 2015.3.1124 internal build.
For the time being you can use one of the following resolutions:
<telerik:RadButton ID="RadButton1" runat="server" UseSubmitBehavior="false" Text="Click" OnClick="RadButton1_Click" RenderMode="Lightweight" /> <script> var $T = Telerik.Web.UI; $T.RadButton.prototype._mouseClickHandler = function (args) { var button = this, result; var target = args.target; var e = args.rawEvent; var element = button.get_element(); if (target !== element && $telerik.isDescendant(element, target)) { $telerik.cancelRawEvent(e); simulateMouseEvent(element, "click", e); return; } try { if (button._functionality.clicking(args) && !element.getAttribute("rwOpener")) { button._functionality.click(args); result = button._functionality.clicked(args); } } finally { button._mouseUp(args); button._restoreFlags(); setTimeout(function () { Page_BlockSubmit = false; }, 0); return !result ? $telerik.cancelRawEvent(e) : true; } }; function simulateMouseEvent(element, eventName, args) { var o = $telerik.$.extend({}, args || {}); var oEvent; if (document.createEvent) {//deprecated DOM2 Event Model oEvent = document.createEvent("MouseEvents"); oEvent.initMouseEvent(eventName, o.bubbles, o.cancelable, document.defaultView, o.button, o.screenX, o.screenY, o.clientX, o.clientY, o.ctrlKey, o.altKey, o.shiftKey, o.metaKey, o.button, element); } else if ("MouseEvent" in window) {//standard DOM3 Event Mode oEvent = new MouseEvent('click', o); } oEvent && element.dispatchEvent(oEvent); if (!oEvent) {//IE oEvent = extend(document.createEventObject(), o); element.fireEvent('on' + eventName, oEvent); } return element; } function extend(destination, source) { for (var property in source) { destination[property] = source[property]; } return destination; }</script>
I want to freeze the column header, so that i set UseStaticHeaders=True.
But i found that the Group Header had alignment problem (please see attached screen capture).
Please help. Thanks
I have a RadComboBox that is loading items on demand from a Page method. About 1% of the time, it would lose the selected value on post back. After much digging, I found that in all of those1% cases, there was a \r and/or \n character in the data stringbeing used for the item's text. Once I filtered out the \r and \n characters everything works fine.
I thought I would post this in case anyone else has a similar problem.
I would also urge Telerik to either fix this issue or to put something very clear in the documentation about this.

We are currently using version 2015.2.826 of Telerik controls. We are getting intermittent exceptions from one of our pages where we have codebehind for handling the grid events. The error we are getting is:
Unable to cast object of type 'System.EventArgs' to type 'Telerik.Web.UI.GridPageChangedEventArgs'
We have searched for any other customers with this problem, but are not able to find anything. We definitely need your help on this production problem.
Thank you,
Ed Sudit
Hi Telerik Team,
We are trying to create stand-along document, image, flash and media managers without Editor. We use RadDialogOpener to open different dialogs. It works great except we try to get select item value. We using "ClientCallbackFunction", in that function, the "args.get_value()" return an object. Can we have a method to return a html string so we can easily to display?
script below:
function CallbackFunction( sender, args )
{
}
Thanks,
Lan
Hello,
we have a problem with using different Assembly Versions of the Telerik.Web.Ui.dll that are deployed in the Global Assembly Cache.
We are getting the following reproducable error:
Telerik.Web.UI.RadFormDecorator with ID='RadFormDecorator1' was unable to find an embedded skin with the name 'Metro'. Please, make sure that the skin name is spelled correctly and that you have added a reference to the Telerik.Web.UI.Skins.dll assembly in your project. If you want to use a custom skin, set EnableEmbeddedSkins=false.
The used versions are i.e: 2013.2.611.45 and 2015.1.225.45.
Do you know this behaviour and know how i can get this work?
Thanks,
Bastian John
I am trying to have a custom dropdown on the editor but for some reason it is working but its also making my nonjustify tool active upppon using it here is my code
01. <telerik:RadEditor ID="txtMessage" ToolsFile="~/BackDoor/ToolsFile.xml" runat="server" Skin="Bootstrap" OnClientCommandExecuting="OnClientCommandExecuting" RenderMode="Auto">02. <Tools>03. <telerik:EditorToolGroup> 04. <telerik:EditorSplitButton Name="TagList" Text="Sets Dynamic Tags In Emails" ImageUrl="~/assets/img/tags.png" ImageUrlLarge="~/assets/img/tags.png" ItemsPerRow="5" PopupWidth="170px" PopupHeight="117px" RenderMode="Auto">05. <telerik:EditorDropDownItem Name ="{Player_ID}" value="{player_Id}"/>06. <telerik:EditorDropDownItem Name ="{Player_name}" value="{player_name}"/> 07. <telerik:EditorDropDownItem Name ="{Player_IpAddress}" value="{player_IpAddress}"/> 08. <telerik:EditorDropDownItem Name ="{Player_Points}" value="{player_points}"/> 09. <telerik:EditorDropDownItem Name ="{Player_Points}" value="{player_prize}"/> 10. </telerik:EditorSplitButton>11. </telerik:EditorToolGroup>12.</Tools> 13. 14. 15. </telerik:RadEditor>And here is what i use in the client side event
01. <script type="text/javascript">02. function OnClientCommandExecuting(editor, args) {03. var name = args.get_name(); //The command name04. var val = args.get_value(); //The tool that initiated the command05. if (name == "TagList") {06. editor.pasteHtml("" + val + "");07. //Cancel the further execution of the command as such a command does not exist in the editor command list08. args.set_cancel(true);09. }10. }11.</script>12. 13. 14. 15.<style type="text/css">16. span .reTagList17. {18. background-image:url(/assets/img/label49.png); 19. background-repeat: no-repeat; 20. } 21. 22.</style>
Also I cannot get my icon to appear any ideas guys as what going on im using 30 day demo just

I have a RadWindow that contains a User Control. This user control is doing a lot of processing on load. The initial state of the RadWindow is minimized.
I want the RadWindow to NOT load the UserControl inside it when the page is initially opened. I want the user control to be loaded only when I open the RadWindow.