Hello, how can I find a textbox control using the event OnBatchEditOpening?
I have created a column template.
<telerik:GridTemplateColumn HeaderText="Target" UniqueName="target" HeaderStyle-Width="360px"><HeaderStyle Width="360px" /><ItemTemplate><asp:Literal Text='<%# (Eval("target").ToString()) %>' runat="server" ID="literal_target"></asp:Literal></ItemTemplate><EditItemTemplate><telerik:RadTextBox runat="server" ID="txt_target" TextMode="MultiLine" Width="100%" /> </EditItemTemplate></telerik:GridTemplateColumn>
Thank you.

I'm running into an issue while exporting in BIFF format, the column headers aren't correct on any of my grids that use multicolumn headers. This is on dynamically created columns and multicolumn headers. Anything that does not use multicolumn headers is good.
In the attached screenshot it shows that the second row in excel is not shifting the column headers to the right like it should, it is just cutting them off. When I dig into the GridBiffExportingEventArgs table it is completely missing those cells that are cut off. I tried changing lots of export settings before the export happens and nothing seemed to help. Has anyone else run into this same issue?

I am injecting some HTML into the RadEditor's content window using the pasteHtml method in JavaScript. The HTML I am pasting includes a <span> element, like this:
editor.pasteHtml("<span class='text-highlight'>@MyText</span>");
In all browsers, in Design view, after the text is pasted, the cursor appears after the span contents ("@MyText" in the example above). In Chrome, the cursor is actually positioned inside the <span> tag (which is what I want). In IE and Edge, however, the cursor position appears after the closing <span> tag.
Is there any way to get the cursor inside the <span> tag after the paste occurs? I tried using variations of the range.collapse() methods (which have major limitations in IE anyway), but it had the adverse effect of taking the focus away from the RadEditor control.

When the editor is opened in Microsoft Edge, <br /> is present in the html, with or without taking focus in the content area.
Does appear to do this in Chrome.


$(window).resize(function () { var oWindow = GetRadWindow(); if (oWindow.isVisible()) { oWindow.center(); }});Subresource Integrity is a fairly new security scheme for protecting against malicious script obtained from third-party source (CDNs). It requires that the script tag include a hash of the script content so the browser can verify that it has not been altered.
Telerik controls generate a bunch of script tags for cloudfront.net. It would be swell if the script tags would include the extra attributes necessary to implement subresource integrity. Is this in the roadmap?
Mozilla provides a security analysis tool which highlights this issue. Look at the results for telerik.com here.

I added an editable grid on my page, based on forum posts I found on this site (see attached images). The grid works as expected; however, the filtering & sorting do not.
In edit mode, the grid has a few drop-down lists using <EditItemTemplate>. Unfortunately, the default filter for these columns ends up being a textbox instead of a drop-down list. How can I change them? Also, these fields lose their sorting capability - the column headers can't be clicked, like the other columns in the grid.
If I change the tag from <EditItemTemplate> to <FilterTemplate> the filter becomes a drop-down list; but, then the fields are no longer listed on the edit screen (see attached image).
How can I implement a grid that has both capabilities - a drop-down for editing & for filtering?
This is how I've implemented things...
ASPX page
<telerik:RadGrid ID="RadGrid2" RenderMode="Lightweight" runat="server" AutoGenerateColumns="false" AllowSorting="True" AllowPaging="True" ShowStatusBar="true" OnItemDataBound="RadGrid2_ItemDataBound" AllowFilteringByColumn="True" >
<MasterTableView Name="PlantTypeGrid" DataKeyNames="ID" CommandItemDisplay="Top" ShowFooter="false" >
<HeaderStyle Font-Bold="true"/>
<Columns>
<telerik:GridEditCommandColumn ButtonType="FontIconButton" />
<telerik:GridCheckBoxColumn DataField="Active" HeaderText="Active" />
<telerik:GridBoundColumn DataField="Description" HeaderText="Description" AllowFiltering="false" />
<telerik:GridTemplateColumn HeaderText="Process Unit Category" UniqueName="ProcessUnitCategoryID" AllowFiltering="true" >
<EditItemTemplate>
<telerik:RadDropDownList runat="server" ID="ddlProcessUnitCatTelerik" AppendDataBoundItems="true" >
</telerik:RadDropDownList>
</EditItemTemplate>
</telerik:GridTemplateColumn>
<telerik:GridButtonColumn ConfirmText="Delete this Plant Type?" ConfirmDialogType="RadWindow" ConfirmTitle="Delete" CommandName="Delete" ButtonType="FontIconButton" />
</Columns>
</MasterTableView>
<PagerStyle Mode="NextPrevAndNumeric" />
</telerik:RadGrid>
VB Page
Private Sub BuildPlantTypeGrid()
Dim myCollection As EMSLookupItems = Nothing
myCollection = _lookupMgr.GetPlantTypes(-1, -1)
If Not myCollection.Count = 0 Then
RadGrid2.DataSource = myCollection.Items
Else
RadGrid2.DataSource = ""
End If
End Sub
Protected Sub RadGrid2_ItemDataBound(ByVal sender As Object, ByVal e As GridItemEventArgs)
If TypeOf e.Item Is GridEditableItem Then
If e.Item.IsInEditMode Then
Dim item As GridEditableItem = CType(e.Item, GridEditableItem)
Dim mySubCollection As EMSLookupItems = Nothing
Dim ddlProcessUnitCatTelerik As RadDropDownList = CType(item.FindControl("ddlProcessUnitCatTelerik"), RadDropDownList)
ddlProcessUnitCatTelerik.Width = Unit.Pixel(300)
If Not ddlProcessUnitCatTelerik Is Nothing Then
mySubCollection = _lookupMgr.GetLookupValues("PROCESS_UNIT_CATEGORIES")
If Not mySubCollection.Count = 0 Then
ddlProcessUnitCatTelerik.DataSource = mySubCollection.Items
ddlProcessUnitCatTelerik.DataValueField = "ID"
ddlProcessUnitCatTelerik.DataTextField = "Description"
Else
ddlProcessUnitCatTelerik.DataSource = ""
End If
ddlProcessUnitCatTelerik.DataBind()
ddlProcessUnitCatTelerik.Items.Insert(0, "Please Select...")
End If
End If
End If
End Sub
