Declined
Last Updated: 30 Jun 2016 15:55 by ADMIN
Both properties could be used in scenario when the control is bound with WebService. With assigning values directly to the aforementioned properties, you could omit specifying the Text and Value fields in the WebService, but only point the desirable parameters in the declaration of the control.

This could be very useful, especially when a custom class is used to populate the control in the WebService and if this class does not possess Text and Value fields.
Declined
Last Updated: 22 Jan 2015 12:04 by Pankaj
Created by: Pankaj
Comments: 0
Category: UI for ASP.NET AJAX
Type: Feature Request
0
currently migrating from SharePoint 2010 to Sharepoint 2013 facing issues as Radgrid control 2010.3.1109.35 not working

do we required to download new dll for sharepoint 2013?
does telerik radgrid support 4.5 framework?
Declined
Last Updated: 01 Nov 2013 13:06 by stuart
See http://www.telerik.com/community/forums/aspnet-ajax/async-upload/null-exception-with-overridden-asyncuploadhandler.aspx
Declined
Last Updated: 11 Oct 2021 09:38 by ADMIN
ADMIN
Created by: Jeff Fritz
Comments: 4
Category: UI for ASP.NET AJAX
Type: Feature Request
4
It would be helpful if the BarCode control could render DataMatrix barcodes
Declined
Last Updated: 20 Jan 2015 16:13 by ADMIN
I am having an issue exporting data from a Radgrid when using a Radbutton. Even though I disable the AjaxManager from the code behind the Radgrid wound't export the data. However if I click the button a second time the export window opens, but the file doesn't contain any data. Is there some easy work around in order to fix this issue. If I completely remove the AjaxManager the problem is solved, but makes the usage and layout of the site bad. 

Here is my code...

ASPX:
<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server" >
    <ClientEvents OnRequestStart="RequestStart" OnResponseEnd="ResponseEnd" />
        <AjaxSettings>
            <telerik:AjaxSetting AjaxControlID="btn_Search">
                <UpdatedControls>
                    <telerik:AjaxUpdatedControl ControlID="RG_DataList" LoadingPanelID="ContentLoadingPanel" />
                    <telerik:AjaxUpdatedControl ControlID="datePickersBar" />
                    <telerik:AjaxUpdatedControl ControlID="btn_Export" UpdatePanelRenderMode="Inline" />
                </UpdatedControls>
            </telerik:AjaxSetting>
            <telerik:AjaxSetting AjaxControlID="btn_Export">
                <UpdatedControls>
                    <telerik:AjaxUpdatedControl ControlID="" />
                </UpdatedControls>
            </telerik:AjaxSetting>
        </AjaxSettings>
     </telerik:RadAjaxManager>

<div class="datePickers" id="datePickersBar">
			    <span class="sText">Select period from: </span>
			    <telerik:RadDatePicker ID="RDP_StartDate" runat="server" Culture="da-DK" 
                    HiddenInputTitleAttibute="Visually hidden input created for functionality purposes." 
                    WrapperTableSummary="Table holding date picker control for selection of dates." >
                        <Calendar UseRowHeadersAsSelectors="False" UseColumnHeadersAsSelectors="False" ViewSelectorText="x" runat="server"></Calendar>

                        <DateInput DateFormat="dd-MM-yyyy" DisplayDateFormat="dd-MM-yyyy" AutoPostBack="false" LabelWidth="40%" runat="server" ></DateInput>

                        <DatePopupButton ImageUrl="" HoverImageUrl=""></DatePopupButton>
			    </telerik:RadDatePicker>
			    
			 <span class="sText">to: </span>
		        <telerik:RadDatePicker ID="RDP_FinishDate" runat="server" 
                    Culture="da-DK" 
                    HiddenInputTitleAttibute="Visually hidden input created for functionality purposes." 
                    
                    WrapperTableSummary="Table holding date picker control for selection of dates." >
                        <Calendar UseRowHeadersAsSelectors="False" UseColumnHeadersAsSelectors="False" ViewSelectorText="x"></Calendar>

                        <DateInput DisplayDateFormat="dd-MM-yyyy" DateFormat="dd-MM-yyyy" LabelWidth="40%" ></DateInput>

                        <DatePopupButton ImageUrl="" HoverImageUrl=""></DatePopupButton>
			    </telerik:RadDatePicker>
                &nbsp;&nbsp;&nbsp;&nbsp;
                <telerik:RadButton ID="btn_Search" runat="server" Text="Search" 
                    onclick="btn_Search_Click" Skin="Black" >
                </telerik:RadButton>
                &nbsp;&nbsp;&nbsp;&nbsp;
                <telerik:RadButton ID="btn_Export" runat="server" Text="Export" Skin="Black" 
                    Enabled="false" Visible="true" onclick="btn_Export_Click" 
                    AutoPostBack="true" >
                </telerik:RadButton>
		    </div>
	    
	    <div class="content">
		    <asp:Panel runat="server" ID="Content">
                <telerik:RadAjaxLoadingPanel runat="server" ID="ContentLoadingPanel" 
                        IsSticky="True" CssClass="ajaxLoader" MinDisplayTime="500" 
                        EnableSkinTransparency="False" Skin="Black" />
                <telerik:RadGrid ID="RG_DataList" runat="server" Skin="Default" 
                    onprerender="RG_DataList_PreRender" >
                    <MasterTableView >
                        <CommandItemSettings ShowExportToExcelButton="true"></CommandItemSettings>
                    </MasterTableView>
                    <ExportSettings HideStructureColumns="true" ExportOnlyData="true" IgnorePaging="true" OpenInNewWindow="true">
                        <Excel Format="Biff"></Excel>
                    </ExportSettings>
                    <FilterMenu EnableImageSprites="False"></FilterMenu>
                </telerik:RadGrid>
            </asp:Panel>
	    </div>

CS:
protected void btn_Search_Click(object sender, EventArgs e)
    {
        mergeDataTable();
        btn_Export.Enabled = true;
    }

rotected void btn_Export_Click(object sender, EventArgs e)
    {
        RadAjaxManager1.EnableAJAX = false;

        RG_DataList.ExportSettings.ExportOnlyData = true;
        RG_DataList.ExportSettings.IgnorePaging = true;
       // RG_DataList.ExportSettings.OpenInNewWindow = true;
        RG_DataList.MasterTableView.ExportToExcel();
    }
Declined
Last Updated: 27 Jan 2014 10:34 by Elena
If a RadWindow contains a RadComboBox, and the RadWindow allows the "Move" behavior, there exists a rendering problem with all major browsers: If the dropdown area of the RadComboBox is expanded during a move operation of the RadWindow, the dropdown area stays behind while the RadComboBox and the RadWindow are moved.

Steps to reproduce:
1.) Create a new Telerik C# Web Application
2.) Use the code of the attached Default.aspx file
3.) Run the project and follow the instructions of the Default.aspx page

Declined
Last Updated: 12 Jan 2015 16:40 by ADMIN
Declined
Last Updated: 30 Jun 2016 15:45 by ADMIN
Created by: Samir Vaidya
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
1
Provide a RadDateTime control that allows you to only pick the Day of the Week (Sunday - Saturday) rather than simply picking a Date or a Time.
Declined
Last Updated: 30 Jun 2016 15:42 by ADMIN
Created by: Samir Vaidya
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
2
Provide the ability to clone or duplicate entire rows in the RadGrid control that can then be subsequently used in Insertion operations.

This would be particularly useful when bulk editing records in a RadGrid that are very similar to existing records and only differ by a few values.
Declined
Last Updated: 30 Jun 2016 13:35 by ADMIN
Created by: Andy
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
6
Column width can be manually set via ExportInfrastructure.Column.Width, however, the width cannot be set to be based on the width of the column's cells' content. An auto-size property on the columns would be very useful for properly formatting the Excel file.
Declined
Last Updated: 30 Jun 2016 13:26 by ADMIN
Created by: Edgar
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
0
When you use the scheduler to manage items other than appointments, it'll be nice to have drill down capability. Ie show project and all it's tasks as child.
Declined
Last Updated: 30 Jun 2016 13:25 by ADMIN
Created by: Edgar
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
0
Just like the silverlight version does.
Declined
Last Updated: 07 Jun 2016 13:14 by ADMIN
Created by: Krunal
Comments: 2
Category: UI for ASP.NET AJAX
Type: Bug Report
1
Visual style builder is not working properly in google chrome, doesnt reflect the changes that I m doing to create the style.

Declined
Last Updated: 12 Nov 2015 12:34 by ADMIN
Created by: DNN Support
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
0
Brief Description of Issue: If you try to put HTML comments into the HTML view of an HTML module using the default rich text editor you will find that the comments are visible when you save the content.

Clear Steps to Reproduce:
Install DotNetNuke 7.0.2
Login with admin/host
Edit an HTML module
Switch to the HTML view of the editor
put <!--Test-->
Save
View the page and you will see <!--Test-->
Expected Result:
The comment should be just that, a COMMENT, not visible to the browser unless you were viewing the source of the page.
Declined
Last Updated: 20 Jan 2015 16:14 by ADMIN
Created by: Theodoros
Comments: 1
Category: UI for ASP.NET AJAX
Type: Bug Report
0
The focused date for the calendar is not applied initially when setting it via code behind.

If I do this via code behind:
            theControl.Calendar.RangeMinDate = new DateTime(2012, 1, 1);
            theControl.Calendar.RangeMaxDate = new DateTime(2012, 12, 31);
            theControl.Calendar.FocusedDate = new DateTime(2012, 1, 2);

When clicking on the button to select a date, I get a "Date is out of range" message box. but then it still allows me to pick a date.

The only workaround I have been able to use right now is to set the Focused date in the markup. This will allow the selection without the popup.
Declined
Last Updated: 16 Mar 2019 13:39 by ADMIN
Created by: Massimiliano
Comments: 50
Category: UI for ASP.NET AJAX
Type: Feature Request
169
Bootstrap popularity is growing each day, not just as a flexible grid system, but for it's skinning capabilieties as well. There are dozens of sites with both free and priced Bootstrap skins..
It would be nice to have a skin for rad controls wich maps straight to default Bootstrap classes.
So that just using the bootstrap skins (+ base Telerik controls skin) will also theme the rad controls and changing the Bootstrap themes of course changes the controls theming.

I guess that option to have a "straight" mapping of the rad controls to the bootstrap default classes so to be able to take advantage of bootstrap themes would be a great addition.

=====================
Updated by Telerik admin on 10.4.2017:
The status of this highly demanded feature has been updated to Declined, but you can find details what has been done during the years for satisfying this request:

Since the markup of the controls does not offer direct mapping for the Bootstrap v3 and v4 themes and classes, we introduced a new Bootstrap skin for the suite based on Bootstrap 3 component colors, metrics and appearance. This skin can be easily customized in the Theme Builder (http://themebuilder.telerik.com/aspnet-ajax) in terms of colors which allows you to create Bootstrap like appearance for Telerik Ajax components which matches the colors of your Bootstrap apps and components.

If you have any other requests for Bootstrap, don't hesitate to share them with us.
=====================
Declined
Last Updated: 06 Jun 2014 11:48 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 1
Category: UI for ASP.NET AJAX
Type: Bug Report
0
I struggled for weeks on the problem "Telerik$ is undefined".  I Always got this problem after closing a RadWindow.  But only on my development machine, not in the production version at customer site.

After I bought a new laptop, I hoped the problem would disappear due to complete reinstall.  However this was not the solution.

After weeks of search I found out that the problem is caused due to a DESTROYONCLOSE = TRUE in the RadWindowManager definition of the RadWindow. As soon as I change that to FALSE, my problem disappears.

Hopefullly this is a clue to you guys to fix this problem.

Best regards,
Guy Van Dyck

<telerik:RadWindowManager ID="RadWindowManager" runat="server" Modal="True" Width="1030px" Height="700px" Top="10px" Animation="Fade" ShowContentDuringLoad="False" ReloadOnShow="True" style="z-index: 10000" OnClientClose="RadWindowOnClientClose" DestroyOnClose="True" Behaviors="Move">
        <Windows>
            <telerik:RadWindow ID="RadWindow1" runat="server" Top="10px" ReloadOnShow="true" DestroyOnClose="false" AutoSize="False" Modal="True" OnClientClose="RadWindowOnClientClose" Animation="Fade" Behaviors="Move">
            </telerik:RadWindow>
        </Windows>
    </telerik:RadWindowManager>
Declined
Last Updated: 17 Mar 2015 11:28 by Elena
Created by: Rigel
Comments: 1
Category: UI for ASP.NET AJAX
Type: Bug Report
0
I am developing a web application in which i m facing problem of dropdown residing inside user control is not updated.

Overview of Entire Problem.
As per my and client's requirement:
I've created two user control.
One user control having a drop down.
Another user control having few no of controls and its event.

Both user control i've used in my one web page twice.

For partial postback use following AjaxSettings.

 <telerik:RadAjaxManager ID="RadAjaxManager1" DefaultLoadingPanelID="RadAjaxLoadingPanel1"
        runat="server">
  <AjaxSettings>
 <telerik:AjaxSetting AjaxControlID="btnSave">
                <UpdatedControls>
                    <telerik:AjaxUpdatedControl ControlID="FilterDropDown" />
                    <telerik:AjaxUpdatedControl ControlID="FilterDropDownGridContact" />
                </UpdatedControls>
            </telerik:AjaxSetting>
</AjaxSettings>
    </telerik:RadAjaxManager>
    <telerik:RadAjaxLoadingPanel ID="RadAjaxLoadingPanel1" runat="server">
    </telerik:RadAjaxLoadingPanel>

Now concentrate here,
btnSave is asp server side button residing inside in second user control.
And as I told both user control i've used in my same page twice.
FilterDropDown and FilterDropDownGridContact is two user control.(having only a drop down)
Now when I click on btnSave of first user control event fires and as per ajax setting dropdown user control updates.

But, when I click on btnSave of second user control events fires but user control is not updated.

So, Whats issue??

Is there any way, so that i can update ajax setting such as update first user control when respective user control's btnSave fires and so on.



Declined
Last Updated: 13 Oct 2014 14:50 by ADMIN
Declined
Last Updated: 19 Mar 2014 09:51 by ADMIN
ADMIN
Created by: Marin Bratanov
Comments: 2
Category: UI for ASP.NET AJAX
Type: Feature Request
7