1. go to http://demos.telerik.com/aspnet-ajax/editor/examples/overview/defaultcs.aspx or use any radEditor instance you have 2. switch to html mode and delete all html content 3. copy the following html code and paste it to the html mode text area. <table width="100%" style="color: inherit; font-family: inherit; font-size: inherit;" cellspacing="0" cellpadding="0"> <tbody> <tr style="padding: 0px;"> <td style="padding: 0px; height: 20px;"> </td> </tr> </tbody> </table> 4.switch back to design mode. 5.copy the following html code: <p>TEST</p> 6. set cursor inside the table (you will see table border in design mode) 6. paste copied html using ctrl+v or paste command from editor tool bar 7. switch to html mode and notice that you have several added to your html
The issue is reproducible when there is other content in the content area.
Clicking on header column of GridClientSelectColumn grid row checkboxes remains unchecked. The grid rows becomes selected (style changed) though. The issue appears only in IE 11, Chrome, Firefox and IE 10 work as expected. The issue can be reproduced om Telerik's site: http://demos.telerik.com/aspnet-ajax/grid/examples/functionality/selecting/row-selection/defaultcs.aspx It seems not to be related to Compabitibiity View.
It is design limitation. The format is not not applied because the context menu is single for all columns, but each column can have different format. The DateInput inside the filter menu can not have multiple formats at the same time.
Hello, We have a problem when publishing our appplication with Telerik. After publishing the page that uses a RadGrid and any Skin (doesn't matter if it's Default or Black or Windows7) the Skin files do not load. The Grid loads, it seems that the javascript files load (because the calendar works), but the css and the images that are part of the skins do not load and therefore the grid looks bare (attached partial screenshot). When we publish the application, we do it through Maven (which takes the Telerik dlls from an Archiva repository, in our company we are required to publish using it). When we don't use Maven/Archiva to publish then the page comes our fine and everything looks nice. When we publish using Maven/Archiva, the skin files do not load on the page. So something is preventing the skins files (css and images) from loading correctly on the screen. The only thing we noticed is that when publishing using Maven/Archiva the DLL file attributes (Date modified and Date created) gets reset to current date time. The dlls that we are using are: Telerik.Web.UI.dll (ver 2013.3.1114.40) Telerik.Web.UI.Skins.dll (ver 2013.3.1114.40) We took the dlls after publishing using Maven/Archiva and compared them to the dlls that we downloaded from Telerik and the dlls are identical. The only thing changed was the Date created/Date modified. If that's the reason why the css/images don't load correctly, then it's a big problem for us. Please look into this issue for us. Thank you, Alex
Currently when we use virtualization in GridTemplateColumn, after scrolling columns changes from GridTemplateColumn to GridBoundcolumn.
New control that can encrypt an email (SMIME). Look at http://www.rebex.net/secure-mail.net/
Hi, Before, I use devexpress and they give me all the file for his control to translate it in French Do tou have the same thing with your control ? Thanks Sylo
When RadMenu is present on the page where a RadGrid has to be exported, a JavaScript error is thrown when the response is received. This is observable only in an iframe (or, therefore, a RadWindow). Different ways to work around this are: - remove the menu/context menu - use a regular browser window instead of a RadWindow for this page - use the ContentTemplate of the RadWindow instead of loading an entire page in it - try adding the following function override at the end of the content page, just before the closing form tag: Telerik.Web.UI.RadMenu.prototype._onMouseOut = function (e) { var relatedTarget = e.rawEvent.relatedTarget ? e.rawEvent.relatedTarget : e.rawEvent.toElement; if (!relatedTarget && !this._isMainElementDescendant(e.target)) { //The mouse is out of the window or the current frame - close the menu try { var that = this; setTimeout( function () { that.close(); }, this.get_collapseDelay()); } catch (e) { } } } If this does not help, try adding this one below: $telerik.addHandler = function (element, eventName, handler, autoRemove) { if (!element._events) element._events = {}; var eventCache = element._events[eventName]; if (!eventCache) element._events[eventName] = eventCache = []; var browserHandler; if ($telerik.useAttachEvent(element)) { browserHandler = function() { var e = {}; try { e = $telerik._getWindow(element).event } catch (ex) { } try { return handler.call(element, new Sys.UI.DomEvent(e)); } catch (e) { } } element.attachEvent('on' + eventName, browserHandler); } else if (element.addEventListener) { browserHandler = function(e) { return handler.call(element, new Sys.UI.DomEvent(e)); } element.addEventListener(eventName, browserHandler, false); } eventCache[eventCache.length] = { handler: handler, browserHandler: browserHandler, autoRemove: autoRemove }; if (autoRemove) { var d = element.dispose; if (d !== $telerik._disposeHandlers) { element.dispose = $telerik._disposeHandlers; if (typeof(d) !== "undefined") element._chainDispose = d; } } }
The issue appears when the user starts to type and the cursor is between BR elements. Тhe first typed character is out of the INS element instead its first one. The rest of the typed content is wrapped in SPAN and U elements.
Trying to download the step by step tutorial from the following link fails: http://www.telerik.com/support/aspnet-ajax#step-by-step Thanks in advance, Faten