Won't Fix
Last Updated: 01 Oct 2015 12:04 by ADMIN
Completed
Last Updated: 06 Oct 2015 14:01 by ADMIN
When a table is inserted above a list element and modified via the Table Wizard dialog, it is getting appended as a list item. 
Completed
Last Updated: 09 Jun 2021 15:42 by ADMIN
For the time being the following CSS can be used:
CSS:
        <style>
            .RadPanelBar .rpGroup .rpLink, .RadPanelBar .rpGroup .rpTemplate .RadButton {
                line-height: normal;
            }
        </style
ASPX:
        <telerik:RadPanelBar ID="rpbOptions" runat="server" Width="200px" ExpandMode="SingleExpandedItem" AllowCollapseAllItems="true" Font-Bold="True">

            <Items>
                <telerik:RadPanelItem Text="Delivery Method" Font-Size="Small">
                    <Items>
                        <telerik:RadPanelItem Expanded="true">
                            <ContentTemplate>
                                <div id="div1">
                                    &nbsp;
                     <telerik:RadButton ToggleType="Radio" ButtonType="ToggleButton" ID="RadButton9" runat="server" GroupName="gDeliveyMethod" Checked="true" AutoPostBack="false" Text="Pickup" ForeColor="#295B8B"></telerik:RadButton>
                                    <br />
                                    &nbsp;
                      <telerik:RadButton ToggleType="Radio" ButtonType="ToggleButton" ID="RadButton10" runat="server" GroupName="gDeliveyMethod" AutoPostBack="false" Font-Size="X-Small" ForeColor="#295B8B" Text="Courier"></telerik:RadButton>
                                    </span><br />
                                    &nbsp;
                      <telerik:RadButton ToggleType="Radio" ButtonType="ToggleButton" ID="RadButton11" runat="server" GroupName="gDeliveyMethod" AutoPostBack="false" Font-Size="X-Small" ForeColor="#295B8B" Text="US Mail"></telerik:RadButton>
                                    <br />
                                </div>
                            </ContentTemplate>
                        </telerik:RadPanelItem>
                    </Items>
                </telerik:RadPanelItem>
            </Items>
        </telerik:RadPanelBar>
Completed
Last Updated: 16 May 2014 15:30 by ADMIN
Declined
Last Updated: 28 Jul 2016 13:29 by ADMIN
ADMIN
Created by: Maria Ilieva
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
2

			
Completed
Last Updated: 31 Oct 2014 08:44 by ADMIN
The mdf mentioned in the read me and that the application uses does not appear to be a part of the source download. If it is could I be pointed to it, please? I cannot find it.
Completed
Last Updated: 20 Apr 2015 13:37 by ADMIN
Completed
Last Updated: 26 May 2014 07:29 by ADMIN
Created by: Imported User
Comments: 3
Category: UI for ASP.NET AJAX
Type: Feature Request
1
It would be nice to have a calculator input field.
Completed
Last Updated: 20 Jul 2015 14:14 by ADMIN
Declined
Last Updated: 16 Dec 2018 17:29 by ADMIN
ADMIN
Created by: Vasil
Comments: 2
Category: UI for ASP.NET AJAX
Type: Feature Request
14
<telerik:RadMaskedTextBox ID="RadMaskedTextBox2" Runat="server" Mask="<0..255>.<0..255>.<0..255>.<0..255>" ZeroPadNumericRanges="false" PromptChar="">  
</telerik:RadMaskedTextBox> 

Should render 192.168.1.1 instead of 192.168.__1.__1 
Completed
Last Updated: 06 Oct 2016 15:13 by ADMIN
In case, where paragraph(<p>) with style "font-style: normal" is nested inside table cell (<td>) with style  "style="font-style: italic;" the command incorrectly displays that the content has italic decoration applied and if used the cell is split into three new cells.
Completed
Last Updated: 14 Jun 2021 16:07 by ADMIN
Created by: Michael
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
2
Problem:If I used master page and put there RadSkinManager how can I used designer in page inherit from the master ?
Solution:I can only use the designer in the page where the control is situated.
Suugestion:Make proxy for RadSkinManager like RadAjaxManagerProxy
Completed
Last Updated: 20 May 2014 08:27 by ADMIN
ADMIN
Created by: Maria Ilieva
Comments: 0
Category: UI for ASP.NET AJAX
Type: Feature Request
0

			
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: 18 Sep 2014 11:13 by Jen Ne
ADMIN
Created by: Kostadin
Comments: 1
Category: UI for ASP.NET AJAX
Type: Bug Report
1

			
Won't Fix
Last Updated: 02 Sep 2016 15:42 by ADMIN
Completed
Last Updated: 26 Sep 2014 15:54 by Frank
This issue causes inconvenience among users. Block elements in the content cannot be edited properly when used in the RadEditor.

You can workaround this problem by overriding the setActive method of the RadEditor's object:

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

<script type="text/javascript">
	Telerik.Web.UI.RadEditor.prototype.setActive = function () {
		var $T = Telerik.Web.UI;

		if (this._emptyMessageContainer) this._hideEmptyMessage();

		if ($telerik.isIE && this.getSelection().isControl()) return;

		var curArea = this.get_mode() == $T.EditModes.Html ? this._getTextArea() : this.get_contentArea();

		if ($telerik.isIE) {
			var activeElement = this.get_document().activeElement;
			if ((activeElement && activeElement == curArea) ||
			$telerik.$.contains(curArea, activeElement)) {
				return;
			}
		}

		if (curArea && curArea.setActive) curArea.setActive();
	};
</script>
Declined
Last Updated: 16 Mar 2015 11:48 by ADMIN
ADMIN
Created by: Hristo Valyavicharski
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
0