Completed
Last Updated: 23 Sep 2014 10:20 by ADMIN
Created by: Russell
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
0
Hello,

I am experiencing an error message when attempting to perform a "Telerik Scenario".  
I have purchased the DevTools Complete product line.
When I am inside Visual Studio 2013 Enterprise:

- I attempt to create a new "Telerik Scenario" ... the first screen asks me to select from the various Webforms:  General or RadAjax or RadEditor etc.
- When I select any of the many scenarios listed above ...... I get an Error = "Telerik VSExtensions Error"
- I have reinstalled Visual Studio 2013 ultimate.
- I have reinstalled Telerik DevTools Complete

And I have the same problem.

When I click the "Show me more" link:

the above FULL description reads as follows:

The wizard encountered an error while trying to handle user event.

System.IO.DirectoryNotFoundException: Could not find a part of the path 'C:\Users\h122183\Documents\Visual Studio 2013\WebSites\Cautions10\ExternalLibraries'.
   at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath)
   at System.IO.FileSystemEnumerableIterator`1.CommonInit()
   at System.IO.FileSystemEnumerableIterator`1..ctor(String path, String originalUserPath, String searchPattern, SearchOption searchOption, SearchResultHandler`1 resultHandler, Boolean checkHost)
   at System.IO.Directory.GetFiles(String path, String searchPattern)
   at Telerik.VSX.Internal.FileOperator.GetDirectoryFiles(String directoryPath, String pattern)
   at Telerik.Web.UI.VSX.AssemblyDiscovery.WebUIFileBasedDistribution.GetAdditionalPathsAssemblies()
   at Telerik.VSX.DistributionListing.FileBasedDistribution.GetAllAssemblyFiles()
   at Telerik.VSX.DistributionListing.FileBasedDistribution.PopulateItems(DistributionItemList items)
   at Telerik.VSX.DistributionListing.Distribution.get_Items()
   at Telerik.Web.UI.VSX.Helpers.SkinPackLister.GetSkinPacks()
   at Telerik.Web.UI.VSX.Helpers.ProjectSkinPackLister.GetSkinPacks()
   at Telerik.Web.UI.VSX.Controls.AvailableSkinSelector.SetModelSkins(String mainLoadInformation, IProjectWrap project, DistributionInfo distributionInfo)
   at Telerik.Web.UI.VSX.Controls.AvailableSkinSelector.PopulateSkins(IPropertyDataDictionary allPropertyValues, WizardContext context)
   at Telerik.Web.UI.VSX.Controls.AvailableSkinSelector.InitModel(IPropertyDataDictionary allPropertyValues, WizardContext context)
   at Telerik.VSX.WizardEngine.Controls.WizardControlBase.Init(IPropertyDataDictionary allPropertyValues, WizardContext context)
   at Telerik.VSX.Controls.EnableStateWizardControl`2.Init(IPropertyDataDictionary allPropertyValues, WizardContext context)
   at Telerik.VSX.WizardEngine.Controls.WizardControlBase.Telerik.WizardFramework.ScenarioDriven.IWizardControl.Init(IPropertyDataDictionary allPropertyValues, IWizardContext context)
   at Telerik.VSX.WizardFramework.Pages.DynamicPageController.InitControls()
   at Telerik.VSX.WizardFramework.Pages.DynamicPageController.Init(IWizardPageDef pageDefinition, IWizardContext wizardControlContext, IPropertyDataDictionary allGatheredData)
   at Telerik.WizardFramework.ScenarioDriven.ScenarioSelectorWizard.OnBeforeShow(Boolean movingNext)
   at Telerik.WizardFramework.Wizard.PostMove(Boolean movingNext)
   at Telerik.WizardFramework.Wizard.OnMoveNext()
   at Telerik.WizardFramework.Wizard.UI_Next(Object sender, EventArgs e)
   at Telerik.WizardEngine.Helpers.EventHelper.<>c__DisplayClass1.<RaiseEvent>b__0()
   at Telerik.WizardEngine.Helpers.EventHelper.CatchExceptionAndSendReport(Action action)





Completed
Last Updated: 19 Sep 2014 12:45 by ADMIN
ADMIN
Created by: Pavlina
Comments: 0
Category: UI for ASP.NET AJAX
Type: Bug Report
3

			
Completed
Last Updated: 18 Sep 2014 11:13 by Jen Ne
ADMIN
Created by: Kostadin
Comments: 1
Category: UI for ASP.NET AJAX
Type: Bug Report
1

			
Completed
Last Updated: 04 Sep 2014 13:59 by ADMIN
Steps to reproduce:
1. Set a singe paragraph in content area - <p>some paragraph</p>
2. Select any part of it and apply FontName or RealFontSize command.

Workaround:
<telerik:RadEditor ID="RadEditor1" runat="server">
	<Content>
		<p>some paragraph</p>
	</Content>
</telerik:RadEditor>

<script type="text/javascript">
	(function () {
		var getValue = Telerik.Web.UI.Editor.InlineCommandWithValue.prototype.getValue;
		Telerik.Web.UI.Editor.InlineCommandWithValue.prototype.getValue = function (wnd, range) {
			try {
				if (!range || !this.settings.enableToolStateValue) return;
				if (!range.isCollapsed()) {
					range.normalizeEdges();
				}
				var startNode = range.startContainer;
				if (Telerik.Web.UI.Editor.Utils.isTextNode(startNode)) {
					startNode = startNode.parentNode;
				}
				else if (startNode.childNodes[range.startOffset] &&
					!Telerik.Web.UI.Editor.Utils.isTextNode(startNode.childNodes[range.startOffset])) {
					startNode = startNode.childNodes[range.startOffset];
				}
				return $telerik.getComputedStyle(startNode, this.settings.cssName) ||
					$telerik.getComputedStyle(startNode, this.getAltCssName(this.settings.cssName));
			} catch (e) {
				getValue.call(this, wnd, range);
			}
		}
	})();
</script>
Completed
Last Updated: 02 Sep 2014 15:26 by ADMIN
ADMIN
Created by: Kostadin
Comments: 0
Category: UI for ASP.NET AJAX
Type: Bug Report
1

			
Completed
Last Updated: 01 Sep 2014 07:42 by ADMIN
Declined
Last Updated: 21 Aug 2014 09:54 by Mario
ADMIN
Created by: Lini
Comments: 4
Category: UI for ASP.NET AJAX
Type: Feature Request
20

			
Completed
Last Updated: 15 Aug 2014 07:53 by matt
Created by: matt
Comments: 2
Category: UI for ASP.NET AJAX
Type: Feature Request
0
Hello,

jquery has two deployment versions -- development, which is ~280k, and production, which is minified down to ~90k. Deploying the non-minified version to production is a waste of almost 200k of unnecessary data. There should be a configuration setting (either in RadScriptManager or in web.config; web.config preferred) for specifying that the production (minified) version is desired. 

thanks,
matt
Declined
Last Updated: 13 Aug 2014 12:47 by ADMIN
Completed
Last Updated: 11 Aug 2014 03:08 by Tracey
ADMIN
Created by: Ianko
Comments: 2
Category: UI for ASP.NET AJAX
Type: Bug Report
0
Due to this problem end-users cannot manipulate the newly added areas and use the dialog properly. 

A possible workaround is to force the IE10 compatibility mode of the browser by adding the following meta tag in the head element of the page.
<meta http-equiv="X-UA-Compatible" content="IE=10">
Completed
Last Updated: 06 Aug 2014 15:56 by Adrian
ADMIN
Created by: Ivan Zhekov
Comments: 8
Category: UI for ASP.NET AJAX
Type: Bug Report
2
Based on customer feedback:

* Place RadTabStrip in fluid container;
* Set alignment to "justify"
* Resize the parent container

The last item will occasionally drop.
Completed
Last Updated: 16 Jul 2014 15:49 by ADMIN
ADMIN
Created by: Iana Tsolova
Comments: 20
Category: UI for ASP.NET AJAX
Type: Feature Request
15
Similar to the Silverlight one:
http://demos.telerik.com/silverlight/#GanttView/FirstLook
Unplanned
Last Updated: 15 Jul 2014 12:44 by Robert Veach
The multiline textbox should increase its high while the user types, after the currently available space if fulfilled. Like in Facebook "What's on your mind " textbox  
Completed
Last Updated: 10 Jul 2014 06:57 by ADMIN
ADMIN
Created by: Pavlina
Comments: 0
Category: UI for ASP.NET AJAX
Type: Bug Report
1

			
Completed
Last Updated: 04 Jul 2014 14:33 by ADMIN
Created by: abbottdev
Comments: 2
Category: UI for ASP.NET AJAX
Type: Feature Request
9
Rather than relying on pure javascript to instantiate a Map, which some developers way struggle with, introduce a map control that has server side functions (as well as client side) to select areas, geo-code, and add markers. Add the features contained in http://www.telerik.com/products/wpf/map.aspx

Also, to be able to databind to a collection, specifying a LatitudeDataValue, and LongitudeDataValue and DisplayMemberValue which describes the Lat/Lng and marker names, without the need for client JS! Would love to see the heatmaps implemented in particular.. Any other takers??
Completed
Last Updated: 04 Jul 2014 08:45 by ADMIN
Created by: Roy
Comments: 2
Category: UI for ASP.NET AJAX
Type: Feature Request
3
New control that can create / read / write PDF documents similar to "removed by admin"
Declined
Last Updated: 04 Jul 2014 07:12 by ADMIN
Created by: Timothy Lee Russell
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
3
In the same way that ASP.NET MVC wrappers are supported...
Completed
Last Updated: 02 Jul 2014 14:33 by ADMIN
ADMIN
Created by: Ianko
Comments: 0
Category: UI for ASP.NET AJAX
Type: Bug Report
0
This bug causes incorrect user behavior. Lists cannot be disconnected with Enter, in some cases user cannot add multiple empty paragraphs. 

For the time being you can resolve the issue by incorporating the following JS code block:

<telerik:RadEditor runat="server" ID="RadEditor1">
</telerik:RadEditor>

<script type="text/javascript">
    var setCursorFn = Telerik.Web.UI.Editor.Utils._setCursorInNode;
    Telerik.Web.UI.Editor.Utils._setCursorInNode = function (cursorElement, container, editor) {
        setCursorFn.call(this, cursorElement, container, editor);
        if ($telerik.isChrome) {
            var selection = editor.getSelection();
            var range = selection.getRange();
            if (!range.collapsed) {
                range.collapse();
                selection.selectRange(range);
            }
        }
    }
</script>
Completed
Last Updated: 30 Jun 2014 10:52 by ADMIN
In case where RadButton is set as DefaultButton to the form or a panel and should trigger validation it does not PostBack the page regardless if the page is valid or not