I have a frame that a user can drag and drop files to. My AsyncUpload control is in a separate iframe.
I am currently able to pass the dataTransfer.files object between frames... is there a way I can add the individual file objects of the dataTransfer.files array to the AsyncUpload control using JavaScript?
I can't seem to find a function that will let me do it.
Thank you in advance,
Justin

I'm kind of at a loss as to what is going on. I have RadSpell enabled on the vast majority of my RadEditors, but on 2 of them, I'm getting weird results. In production, it just displays the yellow box that says you are in Spell Checking mode but the buttons are disabled. (See the attached screen shot). In my development environment, it is actually throwing an error with the inner exception of "Input string was not in a correct format."
The error occurs even if the text box is empty.
Here is the definition of the RadEditor with the
<telerik:RadEditor ID="tbCommentEdit" runat="server" EditModes="Design" Visible="true" MaxTextLength="4000" SkinID="DefaultSetOfTools" ContentAreaMode="Div" OnClientInit="CharCountInit" Height="200px" Width="78%" Style="background-color: White; display: inline-block;" Skin="Windows7"> <Tools> <telerik:EditorToolGroup> <telerik:EditorTool Name="AjaxSpellCheck" /> <telerik:EditorTool Name="Cut" /> <telerik:EditorTool Name="Copy" /> <telerik:EditorTool Name="Paste" /> <telerik:EditorSeparator /> <telerik:EditorTool Name="SelectAll" /> <telerik:EditorTool Name="FindAndReplace" /> <telerik:EditorSeparator /> <telerik:EditorTool Name="InsertDate" /> <telerik:EditorTool Name="InsertTime" /> </telerik:EditorToolGroup> </Tools> <Modules> <telerik:EditorModule Name="RadEditorStatistics" Visible="true" Enabled="true"></telerik:EditorModule> </Modules></telerik:RadEditor>If anyone as suggestions I would appreciate it.
Rodney
Is there a way to show the drop down when focusing on the RadSearchBox? I would want it to behave in the same way as the ShowDropDownOnTextboxClick property of the RadComboBox.
The reason for this is that I have information in the header and footer I would like to display as soon as the user focuses on the box.

Hello,
How would find (and store) the new indexes for every item within a radgrid after multiple rows have been dragged and dropped?
(
This demo does it wrong btw, does not properly re-order rows within one grid in scenarios where you drag multiple rows from different positions:
http://demos.telerik.com/aspnet-ajax/grid/examples/columns-rows/rows/drag-and-drop/defaultvb.aspx?show-source=true
Attached files illustrate non working demo re-order: draggedrows.PNG shows 2 rows selected, dropped them between "HANAR" and "CHOPS"; draggedrowsdroppedbetweenhanarandchops.PNG shows result of operation, not expected result. Demo only checks for first dragged item...
)
- How to write out the new indexes client side onrowdropped in a hidden column, so I can get these values on the server side rowdrop event?
- Or How to get new indexes server side after rows are dropped directly?

Hello,
Is it possible to delete everything except the files that are being pasted to the editor? I'm currently using the attribute StripFormattingOnPaste = "AllExceptNewLines".

Hi all,
Using VS 2013 with ASP.NET AJAX Q3 2015. Using below link as a prototype.
http://demos.telerik.com/aspnet-ajax/grid/examples/data-editing/edit-form-types/defaultcs.aspx
I have a weird request from a user to hide all GridBoundColumn's while form is in edit mode..
Also I would like to sort the grid column (ex: LastName) from above link from an external button click event, that button should be outside RadGrid.
Below is code that put all rows in edit mode, it works. But I need some help to hide GridBound columns.
<telerik:RadGrid ID="RadGrid1" runat="server" AllowPaging="True" CellSpacing="0" AllowMultiRowEdit="true" DataSourceID="SqlDataSource1" GridLines="None" Width="800px" AllowFilteringByColumn="True" EnableLinqExpressions="true" OnItemDataBound="RadGrid1_ItemDataBound" OnPreRender="RadGrid1_PreRender" OnItemCommand="RadGrid1_ItemCommand" Skin="Vista" AllowSorting="True"> </telerik:RadGrid>-------------------- protected void RadGrid1_PreRender(object sender, EventArgs e) { foreach (GridDataItem data in RadGrid1.MasterTableView.Items) { data.Edit = true; } RadGrid1.Rebind(); } Any help will be appreciated.
Thanks
gc_0620
With the latest update (2015.3.1111.4.5), I've noticed that if we have the following code:
<telerik:RadSocialShare ID="RadSocialShare1" runat="server"> <MainButtons> <telerik:RadSocialButton SocialNetType="ShareOnTwitter" ToolTip="Tweet this" /> <telerik:RadSocialButton SocialNetType="ShareOnFacebook" ToolTip="Share on Facebook" /> <telerik:RadCompactButton ToolTip="Show more" /> </MainButtons></telerik:RadSocialShare>ALL Telerik controls break across our site. Nothing works.
However, when I remove the RadCompactButton, it works again. This is the revised code that fixes the problem:
<telerik:RadSocialShare ID="RadSocialShare1" runat="server"> <MainButtons> <telerik:RadSocialButton SocialNetType="ShareOnTwitter" ToolTip="Tweet this" /> <telerik:RadSocialButton SocialNetType="ShareOnFacebook" ToolTip="Share on Facebook" /> </MainButtons></telerik:RadSocialShare>
Just thought you'd want to know.
Chris Lee
I have a RadGrid with Scrolling-AllowScroll="true" and Scrolling-UseStaticHeaders="true" but the GridHyperLinkColumn columns are not displayed. They do show up correctly when Scrolling-UseStaticHeaders="false".
Is there a way to show the GridHyperLinkColumn with Scrolling-UseStaticHeaders="true"?
01.<telerik:RadGrid ID="RadGrid2" runat="server" GridLines="None" Width="100%" PageSize="10000" AllowPaging="False" AutoGenerateColumns="False" OnNeedDataSource="RadGrid2_NeedDataSource" OnItemCreated="RadGrid2_ItemCreated" ShowStatusBar="False" AllowSorting="True" AllowFilteringByColumn="False" Skin="Web20">02. <ClientSettings Scrolling-AllowScroll="true" Scrolling-UseStaticHeaders="true" AllowColumnsReorder="False" ReorderColumnsOnClient="False">03. <Resizing AllowColumnResize="False" EnableRealTimeResize="False"></Resizing>04. <Selecting AllowRowSelect="True"></Selecting>05. </ClientSettings>06. <FilterItemStyle Font-Size="8px" />07. <PagerStyle ShowPagerText="False" AlwaysVisible="False" />08. <MasterTableView Width="100%" DataKeyNames="OrderID,OrderNumber,OrderVendorItemID" AutoGenerateColumns="False" CommandItemDisplay="Bottom" >09. <CommandItemSettings ShowAddNewRecordButton="False" ShowExportToExcelButton="True" ShowRefreshButton="False" />10. <Columns>11. 12. <telerik:GridHyperLinkColumn DataNavigateUrlFields="OrderID" ImageUrl="/icons/edit_20_16.png" Target="blank" DataNavigateUrlFormatString= "editorder.aspx?OrderID={0}" DataType="System.String">13. <HeaderStyle Width="5px" /> 14. <ItemStyle HorizontalAlign="Center" />15. </telerik:GridHyperLinkColumn>16. 17. <telerik:GridBoundColumn DataField="OrderNumber" HeaderText="Order No." SortExpression="OrderNumber" UniqueName="OrderNumber" DataType="System.String" Display="true" ItemStyle-HorizontalAlign="Center" >18. <HeaderStyle Wrap="false" />19. <ItemStyle Wrap="false" />20. </telerik:GridBoundColumn>21.</Columns> 22. </MasterTableView> 23. </telerik:RadGrid>