Completed
Last Updated: 10 Nov 2014 14:38 by ADMIN
ADMIN
Created by: Misho
Comments: 0
Category: UI for ASP.NET AJAX
Type: Feature Request
0
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 &nbsp; added to your html















Completed
Last Updated: 22 May 2014 14:53 by ADMIN
Completed
Last Updated: 19 Apr 2022 17:50 by ADMIN
The issue is reproducible when there is other content in the content area.
Completed
Last Updated: 30 Nov 2015 09:08 by Lee
Completed
Last Updated: 26 Mar 2014 15:10 by ADMIN
ADMIN
Created by: Hristo Valyavicharski
Comments: 0
Category: UI for ASP.NET AJAX
Type: Feature Request
0

			
Declined
Last Updated: 20 Jan 2015 13:08 by ADMIN
Created by: Denis
Comments: 2
Category: UI for ASP.NET AJAX
Type: Bug Report
0
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.
Declined
Last Updated: 13 Aug 2015 08:32 by ADMIN
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.
Declined
Last Updated: 17 Mar 2015 08:27 by Elena
Created by: Aleksander
Comments: 1
Category: UI for ASP.NET AJAX
Type: Bug Report
0
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
Declined
Last Updated: 26 Sep 2014 12:00 by ADMIN
Currently when we use virtualization in GridTemplateColumn, after scrolling columns changes from GridTemplateColumn to GridBoundcolumn. 
Declined
Last Updated: 12 Feb 2014 10:04 by ADMIN
Created by: Roy
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
0
New control that can encrypt an email (SMIME). Look at http://www.rebex.net/secure-mail.net/
Completed
Last Updated: 16 Jul 2015 15:27 by ADMIN
Completed
Last Updated: 12 Feb 2014 09:36 by ADMIN
Created by: Sylvain
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
0
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
Completed
Last Updated: 14 Mar 2014 16:15 by ADMIN
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;
					}
				}
			}
Completed
Last Updated: 28 Apr 2015 15:21 by ADMIN
ADMIN
Created by: Hristo Valyavicharski
Comments: 0
Category: UI for ASP.NET AJAX
Type: Bug Report
0

			
Completed
Last Updated: 11 Nov 2014 14:47 by ADMIN
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.
Completed
Last Updated: 28 Feb 2014 16:08 by ADMIN
Created by: Faten
Comments: 2
Category: UI for ASP.NET AJAX
Type: Feature Request
0
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
Completed
Last Updated: 04 Aug 2015 11:06 by ADMIN