Completed
Last Updated: 17 Feb 2021 09:34 by ADMIN
Release R1 2021 SP1
ADMIN
Created by: Vessy
Comments: 0
Category: UI for ASP.NET AJAX
Type: Bug Report
1
RadButton's focus state styling is missing in Bootstrap.

Steps to reproduce:
1. Open https://demos.telerik.com/aspnet-ajax/button/examples/keyboardsupport/defaultcs.aspx?skin=Bootstrap
2. Focus any of the first buttons using the Tab key
    Result: No focus styles are applied
    Expected: Follow the steps above in Sunset skin

-----------------------------------------
Workaround:

        button.RadButton.rbButton:focus {
            box-shadow: 0 3px 5px rgba(0, 0, 0, 0.125) inset;
        }

Completed
Last Updated: 18 Jun 2020 14:12 by ADMIN
I am using the "PostbackTriggers" property of the Upload control, as described on your web site article "How to Persist Uploaded Files".

This works well for the situation where I need a postback on a control, but that control is not a "submit" control.

The problem comes when I use one of the "submit" controls (listed in the PostbackTriggers property), but a server side validation error occurs, and the form data (including uploaded files) is NOT saved to the DB.  (This is a type of validation that can only be done on the server side.)  In that case, the upload control loses the uploaded file information.  Thus two questions:

1.   Is there a way on the server side to tell the control that an error has occurred, and to continue to persist the uploaded file information?

2.   Is there a way for the upload control to ALWAYS persist the uploaded file information until told on the server side that I have extracted the information I need from it?
Unplanned
Last Updated: 21 Mar 2019 16:14 by ADMIN
Created by: Suwandi
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
1
i have a feature request

- Image map input

Based mapify,js sample below :

http://etiennemartin.ca/mapify/

I have use it before, storing areas and values in the databases, but the output is hyperlink.

I want it as asp.net input control that have selectedvalue property, i want server side value as the result. Maybe i can borrow hiddenfield or something. But it's wasting time.

Please, add image control input into your collection. It's very usefull i guess.
Completed
Last Updated: 11 Jun 2021 14:25 by ADMIN
Created by: Rathna
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
1

Hi,

It will be great to have a property in a raddock to automatically adjust its height/width to occupy the new space created when some other raddock in the layout is minimized. This will avoid the need for the user to adjust the height/width of the raddock which is still visible.

 

Declined
Last Updated: 01 Sep 2021 06:58 by ADMIN
RadCodeBLock and RadScriptBlock is not able to handle the server tags for all case scenarios, hence RadAjaxManager throws the exception mentioned in the title.
Completed
Last Updated: 08 Nov 2019 11:26 by ADMIN
Release R1 2020
Created by: Randy
Comments: 1
Category: UI for ASP.NET AJAX
Type: Bug Report
1

I have a RadCheckboxList In an ASP Panel. When Enabling/Disabling the panel the CheckBoxList does not Enable/Disable.  I tested this with a simple mock up with additional controls that work as expected:

 

<asp:Panel ID="TestPanel" runat="server" Enabled="true">

<telerik:RadCheckBoxList ID="WeeklyDays" runat="server" Columns="4" AutoPostBack="false">

<Items>

<telerik:ButtonListItem Text="Monday" Value="2" />

<telerik:ButtonListItem Text="Tuesday" Value="4" />

<telerik:ButtonListItem Text="Wednesday" Value="8" />

<telerik:ButtonListItem Text="Thursday" Value="16" />

<telerik:ButtonListItem Text="Friday" Value="32" />

<telerik:ButtonListItem Text="Saturday" Value="64" />

<telerik:ButtonListItem Text="Sunday" Value="1" Selected="true" />

</Items>

</telerik:RadCheckBoxList>

<telerik:RadTextBox ID="TestText" runat="server"></telerik:RadTextBox>

<telerik:RadDatePicker ID="TestDate" runat="server"></telerik:RadDatePicker>

</asp:Panel>

<br />

<telerik:RadCheckBox ID="ToggleEnabled" runat="server" Text="Toggle Panel" AutoPostBack="true" Checked="true" OnCheckedChanged="ToggleEnabled_CheckedChanged"></telerik:RadCheckBox>

 

 

 protected voidToggleEnabled_CheckedChanged(objectsender, EventArgs e)

{

TestPanel.Enabled = Convert.ToBoolean(ToggleEnabled.Checked);

}

Completed
Last Updated: 04 Sep 2019 07:58 by ADMIN
Release R3 2019

The current colors, #0082CC and #FFFFFF that are used for forecolor and backcolor, have 4.14:1 color contrast ratio: https://webaim.org/resources/contrastchecker/?fcolor=FFFFFF&bcolor=0082CC

The minimum required color contrast ratio is 4.5:1 for AA Compliance, and 7:1 for AAA Compliance.

A possible alternative color for the #0082CC blue can be #007CC.

Completed
Last Updated: 05 May 2020 18:24 by ADMIN
Release R2 2020

An error will occur when the Index equals the number of items in the collection

private static ClientOperation<T> Remove(ControlItemCollection items, int index)
{
	if (index < 0 || index > items.Count) // should be >= instead
		return null;
	var item = items[index];
	items.RemoveAt(index);

	var operation = new ClientOperation<T> {Item = (T) item, Type = ClientOperationType.Remove};

	return operation;
}

Completed
Last Updated: 21 Apr 2022 08:06 by ADMIN
Created by: KFC
Comments: 3
Category: UI for ASP.NET AJAX
Type: Feature Request
1

Hi Team,

I received this from Khurram,

One small suggestion is for your ASP.net AJAX library to include two themes outside the box i.e. Windows 10 Dark and Windows 10 Light theme.

Completed
Last Updated: 02 Jul 2020 12:42 by ADMIN
Release R3 2020

Editor is not maintaining the Format of text, specifically the bullet numbers, when copied from MS word. 

You can use the attached content to reproduce the problem in the Overview demo of the control.

Unplanned
Last Updated: 30 Jul 2020 09:06 by ADMIN
Created by: Sunil Sutar
Comments: 0
Category: UI for ASP.NET AJAX
Type: Feature Request
1

One tool that can help with testing for the contrast ratio is ANDI.

 Related to https://feedback.telerik.com/aspnet-ajax/1476937-glow-skin-vista-skin-and-overall-any-links-in-the-grid-are-showing-as-blue-not-matching-what-it-has-earlier

From Admin: Share in this thread the most impactful contrast issue here, sharing the control and its setup, the skin and the exact elements that are failing the contrast test.

 
Completed
Last Updated: 26 May 2021 20:44 by ADMIN
Created by: Dhiraj
Comments: 3
Category: UI for ASP.NET AJAX
Type: Bug Report
1

Greetings!

Description:

I have found a Cross-Site Scripting issue in the rich text editor, RadEditor. This is not in a body where user provides certain strings, rather it's in the text properties which gets sent along with the user input, such as font-style. The developers were able to follow the filtering mechanisms given in at https://docs.telerik.com/devtools/aspnet-ajax/controls/editor/managing-content/prevent-cross-site-scripting-(xss), but it provides protection for the inputs given in <textarea>, and for the properties values. Hence XSS is still possible

 

Steps for Reproduction:

 

1. Open up the text editor {{Screenshot 2020-09-23 at 12.08.51 PM.png}}

2. Input a string and change its font style.

3. Click on submit and intercept the request. {{Screenshot 2020-09-23 at 12.14.45 PM.png}}

4. Now we need to modify the request body for parameter of texteditor's ID. You may notice that the font-style is set and sent by using a <span>.

RadEditor1=%253cspan%20style%253d%2522font-family%253a%20%2527MS%20Sans%20Serif%2527%253b%2522%253etextexttext%253c%2Fspan%253e

Change parameter 'RadEditor1's value with the following:

RadEditor1=%253cspan%20onmouseover%253d%2522document.body.innerHTML%253d%2527ioioioioioioioioo%2527%252bdocument.cookie%2522%20style%253d%2522font-family%253a%20%2527MS%20Sans%20Serif%2527%253b%2522%253etextexttext%253c%2Fspan%253e

5. Submit and notice the 200 OK response. Now go to the text editor and notice that the string texttexttext can be seen. {{Screenshot 2020-09-23 at 12.24.18 PM.png}}

6. Put a mouse cursor on the string and notice that it gets changed to ioioioioioioioioo<domainCookies>.

 

##################

Please let me know if given information doesn't suffice the abilities for reproduction.

 

Thanks,

Dhiraj

Unplanned
Last Updated: 17 Nov 2021 11:53 by ADMIN

When using the Designer, the Default Values displayed for properties do not reflect the Default values from Lightweight RenderMode.

One particular scenario is when creating a GridButtonColumn for RadGrid that is set to LinkButton. While the Designer shows the ButtonType set to "LinkButton" by default, upon rendering the Grid, the ButtonType is FontIconButton.

There is no way of changing that in the Designer.

Unplanned
Last Updated: 24 Jan 2022 16:06 by ADMIN
Created by: Nick
Comments: 0
Category: UI for ASP.NET AJAX
Type: Feature Request
1

I am looking for a simple clock image which I can set from code behind with, for example, startime=1000 | endtime=1600 and see a little circle with a clock face with a "pie slice" shaded in to represent the period between 10am and 4pm.

I am not looking for a time picker (that's already done in the Edit Form) - I need a way of displaying a little visual indicator like a clock face / pie chart type of graphic with a shaded area showing the user a range such as 10am-4pm, 2pm-4pm, 8am-1pm etc. 

I think the minimum requirements would be:

1. Skin support (I use Bootstrap but all standard skins should be supported)

2. Be able to define a "start" and "end" range for the time slots around the edge

3. Be able to choose a beginning slot and an end slot

4. Be able to add a label in the centre (in my case it would Date but it would be useful to be able to make it something like RadClockRange.CentreLabel.Text="something"). Also, maybe the label could have properties such as RadClockRange.CentreLabel.Colour=Red / .CentreLabel.FontSize=16 etc.

5. It would be nice to databind (I use dbo.Appointments.TimeStart="11" and dbo.Appointments.TimeEnd="15" but it could be user controllable - like the scheduler - to use a user definable field in a table)

6. A range of sizes would be useful

Sample:

Completed
Last Updated: 20 Apr 2022 09:40 by ADMIN
Release R2 2022
Created by: rumen jekov
Comments: 2
Category: UI for ASP.NET AJAX
Type: Feature Request
1
I am using the ClientExportManager with pageBreaks and I am finding that any overflow is cut off in the pdf if the content is too big for one page. Is there a setting to either zoom out so all content of the wizard step is put on one pdf page?
Unplanned
Last Updated: 15 Mar 2022 18:29 by Ian
Currently the the ImageEditor (and the Editor) are looking for standard .ascx files with the names of its dialogs and it is not optimized for a scenario in which these dialogs are pre-compiled.
Unplanned
Last Updated: 12 Aug 2022 15:49 by David
Created by: David
Comments: 0
Category: UI for ASP.NET AJAX
Type: Feature Request
1
Hi Team,

I would like to request the RadRadioButtonList's get_oldSelectedIndex method used in the OnSelectedIndexChanged event should return -1 instead of undefined when no item is selected.  

Thank you!
Unplanned
Last Updated: 24 Nov 2022 08:41 by ADMIN
Created by: Stuart
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
1
The ability to set colours for one appointment. For example, an appointment could run through weekends and the colour of the appointments on the weekend are grey
Unplanned
Last Updated: 07 Dec 2022 23:14 by ADMIN

Hi,

currently the only way to set the translation for the "All" option that is created through the enabled "EnableAllOptionInPagerComboBox" property is to set the translation in the "RadGrid1_ItemDataBound" method, which is described here: Localization on RadGrid: Paging Option All

It's a workaround for a missing localisation. By setting the translation in the RadGrid1_ItemDataBound method the if-statement is being checked for every row processed, which is not good for performance.

Could you please make it possible to set the translation with a property and have the default value set in the resource file of the grid?

Thank you.