I'm using a Telerik RadGrid with nested grids (using NestedViewTemplate
) inside an ASP.NET Web Forms page. I've enabled scrolling with AllowScroll="true"
and UseStaticHeaders="true"
, and set a fixed width for the outer container with horizontal scrolling.
The issue is that when I scroll horizontally to the right and then expand a nested row, the inner RadGrid
(in the nested view) does not align properly or its scroll resets to the left. I want both the parent and child grids to stay aligned and scroll consistently, especially when expanding/collapsing rows.
Has anyone faced a similar issue or found a good way to synchronize scrolling between parent and nested grids?
I have web projects that I am trying to update with the new 2025 Q1 assemblies and am getting a build error of the TelerikLicense.vb file.
I followed these instructions:
AJAX
.View key
next to the ProgressĀ® TelerikĀ® UI for ASP.NET AJAX.TelerikLicense.cs
(for VB projects add TelerikLicense.vb
).App_Code
folder.TelerikLicense.vb error BC30034: Bracketed identifier is missing closing ']'.
Any suggestions?ScriptResource.axd?d=pbopGUyRoGMceL-ci2EaNCr6Dz-J2c03WyoCKxBcDTMoBx3qAj23lItrM0pL-o5km9ikY4QfqRDuZH3-53hC0jR2CXHTAiQgYV-9MhRb5Jp16E4Zndorh_IoOL8UoIu8Pe13tmi_DG4t62kaEGe6RDQrD0-3W0mu3F-NX0n8K3Q1&t=4227dd99:4233 Uncaught Sys.ArgumentUndefinedException: Sys.ArgumentUndefinedException:
undefined object
at Error.Error$create [as create] (http://localhost:50107/MLS2025/ScriptResource.axd?d=pbopGUyRoGMceL-ci2EaNCr6Dz-J2c03WyoCKxBcDTMoBx3qAj23lItrM0pL-o5km9ikY4QfqRDuZH3-53hC0jR2CXHTAiQgYV-9MhRb5Jp16E4Zndorh_IoOL8UoIu8Pe13tmi_DG4t62kaEGe6RDQrD0-3W0mu3F-NX0n8K3Q1&t=4227dd99:237:15)
I have created an application within Visual Studio 2019 and using c#.
The project has a page which uses a telerik RadGrid. It is populated on page load and I have filtering enabled on 3 of the columns. I have set the aspx for the columns to have AutoPostBackOnFilter="true" AllowFiltering="true" ShowFilterIcon="true"
The runs perfectly when ran in development environment but when I publish my application to the web server the filter does not work at all. Nothing happens if I tab out of the filter text box or if I select anything from the filter icon.
Can anyone advise what the issue could be please? I am using Telerik.web.ui version 2024.1.131.45
Thanks
RR
If I have a subscription license thatās active and publish an application to a production environment, all is well.
Scenario case, if my license expires, and I make an update to the application, same version of Telerik controls, but now with an expired license.
If I publish a new version of the application, will it still function without the license key messages?
From what I understand, it will still function and no license messages assuming I don't update the Telerik Controls.
I have a radgrid with a standard modal popup for making entries. Everything works as it should. However, I have been trying to modify the field in the popup window so the user would see a multiline box to make entries.
I've tried css, asp:textbox, and other ideas. but they all failed. Here is my code.....
any help would be appriciated.
<div style="width:95%; margin:2%; display:inline-block">
<telerik:RadGrid ID="RadGrid1" runat="server" OnNeedDataSource="RadGrid1_NeedDataSource" AutoGenerateColumns="False"
CellSpacing="-1" GridLines="Both" RenderMode="Lightweight" OnItemCommand="RadGrid1_ItemCommand" MasterTableView-ExpandCollapseColumn-CommandName="Insert">
<GroupingSettings CollapseAllTooltip="Collapse all groups" />
<MasterTableView CommandItemDisplay="Top" EditFormSettings-PopUpSettings-Modal="true" EditMode="PopUp" DataKeyNames="Line">
<CommandItemSettings ShowSaveChangesButton="False" />
<RowIndicatorColumn ShowNoSortIcon="False" Visible="False">
</RowIndicatorColumn>
<ExpandCollapseColumn Created="True" ShowNoSortIcon="False">
</ExpandCollapseColumn>
<Columns>
<telerik:GridBoundColumn DataField="Line" ReadOnly="true" FilterControlAltText="Filter Line column" HeaderText="Line" ShowNoSortIcon="False" UniqueName="Line">
<HeaderStyle Width="15px" HorizontalAlign="Center" />
<ItemStyle CssClass="lineNo" />
</telerik:GridBoundColumn>
<telerik:GridBoundColumn DataField="Description" ReadOnly="false" FilterControlAltText="Filter Description column" HeaderText="Description" ShowNoSortIcon="False" UniqueName="Description">
<HeaderStyle Width="50%" />
<ItemStyle CssClass="description" />
</telerik:GridBoundColumn>
<telerik:GridBoundColumn DataField="Created_by" ReadOnly="true" FilterControlAltText="Filter Created_by column" HeaderText="Created By" ShowNoSortIcon="False" UniqueName="Created_by">
<HeaderStyle Width="10%" />
<ItemStyle CssClass="empNo" />
</telerik:GridBoundColumn>
<telerik:GridBoundColumn DataField="Created_Name" ReadOnly="true" FilterControlAltText="Filter Created_by column" HeaderText="Created Name" ShowNoSortIcon="False" UniqueName="Created_Name">
<HeaderStyle Width="20%" />
<ItemStyle CssClass="empName" />
</telerik:GridBoundColumn>
<telerik:GridBoundColumn DataField="Created_Date" ReadOnly="true" FilterControlAltText="Filter Created_Date column" HeaderText="Created Date" ShowNoSortIcon="False" UniqueName="Created_Date">
<HeaderStyle Width="15%" />
</telerik:GridBoundColumn>
</Columns>
<EditFormSettings InsertCaption="Add new item" CaptionFormatString="Edit Line: {0}" CaptionDataField="Line">
<EditColumn FilterControlAltText="Filter EditCommandColumn column">
</EditColumn>
<PopUpSettings Modal="True" />
</EditFormSettings>
</MasterTableView>
<FilterMenu RenderMode="Lightweight">
</FilterMenu>
<HeaderContextMenu RenderMode="Lightweight">
</HeaderContextMenu>
</telerik:RadGrid>
</div>
Hello,
One of our customers reported that they are trying to enhance the security features for file uploads in RadFileExplorer, Document Manager, and Image Manager. Specifically, for SVG files, they want to inspect the file contents for any embedded JavaScript functions. If the file is deemed unsafe, the upload should fail, and an error message should be displayed to the end user.
We have implemented the necessary backend validation and are able to throw an error message. However, we have not found a way to display this error message in the UI. Is there a recommended approach for implementing error message display in this scenario?
Thanks,
Lan