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.
When we create a link to an external web site such as www.cnn.com using the RadEditor (6.3.0.0) on our SP2010 farm we are getting an error that says this: "cannot find this location in the current site location" "the URL may refer to an external web site for to a location in the site collection that does not exist or you do not have the right to access" When I bring up a browser on the SharePoint server themselves I can access those sites.
radcombobox with AutoPostBack = true; Filter = RadComboBoxFilter.None; MarkFirstMatch = false; EnableLoadOnDemand = false; AllowCustomText = true; we type a text like "123" and we hit ENTER all works fine: server side event SelectedIndexChanged is fired and Text property has correct value of "123" we type the text "00000" and we hit enter: - no server side event is fired (we are expecting SelectedIndexChanged to be fired) - on the client side now the combo shows up "123" (we've entered "00000") we type the text "4560000" and we hit ENTER: - a server side event is fired (SelectedIndexChanged) but the Text property has value of "456" seems that the character '0' is ignored from the final part of the entered text. attached is the solution (VS2010) with an example to reproduce the bug. we hope to find soon a solution to this (this bug happens with the latest version: UI for ASP.NET AJAX Q3 2012\Bin40).
Just like the silverlight version does.
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.
I'd like to use the Navigation widget in "Horizontal with drop down menus" mode but the "mouse over" mode doesn't work with touch devices (iPad) and the click option is OK but I still want the "Hover" option for non touch devices.
Since upgrading to Q1 2013, any export to csv file type from RadGrid displays an empty space when a column is empty. It should just be blank.
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
HotFix Build: Telerik.Web.UI_2013_1_227_Dev_hotfix RadButton is not responding as the DefaultButton property of a Panel
Hallo Collegue, I wan to create fixex columns in RadGrid, it is possible? It should be similar like excel functionality anchor of traverse. thanks, J.Matouš
Hallo Collegue, It is possible to export only some columns of RadGrid to excel? thanks, J.Matouš
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> <telerik:RadButton ID="btn_Search" runat="server" Text="Search" onclick="btn_Search_Click" Skin="Black" > </telerik:RadButton> <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(); }
See http://www.telerik.com/community/forums/aspnet-ajax/async-upload/null-exception-with-overridden-asyncuploadhandler.aspx
Other skins or browsers are working fine. (Didn't test other IE Versions) Bug appears also at the Demo site http://demos.telerik.com/aspnet-ajax/dropdownlist/examples/functionality/templates/defaultcs.aspx
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?
The behavior is observable in the demos on Telerik's site. I am using ie10 with ie7 document mode.
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.