Hello,
I have a grid that could be grouped by one of the columns or ungrouped. GroupLoadMode = "Client".
What is the easiest way to get the grouping state (grouped or ungrouped) of the grid on the client side.
Thanks,
Olga
When checking an element that has many child elements (> 30.000) it takes a while until that element becomes checked.
Found that some Telerik's Javascript code is being executed for all 30.000 elements (even nothing is being done with them from our perspective).
Example: when Option11 checkbox is clicked, page becomes unresponsive and it takes approx. 30 seconds to become checked.
Can we get some feedback why this is happening?
Thx in advance
I would like to know how to customize the "X items checked" text when I set CheckedItemsTexts="FitInInput" and have multiple items checked.
Thanks
hi friends,
I'm adding a radmenu to a aspx Report Viewer Form, it overlaps the control bar ot he report,
<form runat="server">
<asp:ScriptManager ID="ScriptManager1" runat="server" />
<telerik:RadMenu ID="RadMenu1" runat="server">
<Items>
<telerik:RadMenuItem runat="server" Text="Root RadMenuItem1">
<Items>
<telerik:RadMenuItem runat="server" Text="Child RadMenuItem 1">
</telerik:RadMenuItem>
<telerik:RadMenuItem runat="server" Text="Child RadMenuItem 2">
</telerik:RadMenuItem>
<telerik:RadMenuItem runat="server" Text="Child RadMenuItem 3">
</telerik:RadMenuItem>
</Items>
</telerik:RadMenuItem>
</Items>
</telerik:RadMenu>
<br />
<div>
<p>what is this shir??</p>
<telerik:ReportViewer
ID="reportViewer1" ServiceUrl="api/reports" ScaleMode="Specific"
Width="100%"
Height="50%"
EnableAccessibility="false"
runat="server">
<ReportSource IdentifierType="UriReportSource" Identifier="VentasPorCliente.trdp">
</ReportSource>
<%-- If set to true shows the Send Mail Message toolbar button --%>
<SendEmail Enabled = "false" />
</telerik:ReportViewer>
</div>
</form>
do you have any idea how to Fix this?
Thanks
Hi,
Is it possible to upload directly to the TargetFolder when the file is dropped on a dropzone?
I mean, without hitting a submit button first?
Thanks,
Marc
When using RadGrid, if setting UseStaticHeaders="True", in rendered HTML, the table header will be rendered into a separate table, and we will get the following complaints from Siteimprove Accessibility Checker:
Is there a solution to this issue?
Hello,
I made an update to the newest Telerik.Web.UI Version 2023.3.1010.45 and now I cannot collapse my RadGrid-Items anymore after expanding. Instead I can see a statusbar which is loading infinite long on the left side when the ViewState is enabled in the Sitefinity Backend. When I disable the ViewState I have the same problem, just without statusbar. There is a screenshot of the grid and my HTML-Code in the attachment. Could anybody help me?
Regards
Hi,
I would like to change the height and width of the button in the alert windows.
See the attached image, the button is too small.
Regards,
Omar
I am not able to set opacity for the background of HTML Chart.
I tried to setup in page
<PlotArea>
<Appearance>
<FillStyle BackgroundColor="#32FFFFFF" />
</Appearance>
or in code
PlotArea.Appearance.FillStyle.BackgroundColor = Color.FromArgb(50, 255, 255, 255);
But the alpha component is always ignored and I see only white background. Is it possible to define some other way?
Thank you,
Petr
Hello,
How do I check if row is selected from the snippet below?
function BatchEditOpening(sender, args) { var row = args.get_row(); var cell = args.get_cell(); var tableView = args.get_tableView(); var column = args.get_column(); var columnUniqueName = args.get_columnUniqueName(); var isCanceled = args.get_cancel(); }
I tried
row.get_selected() but it throws an exception. Please advise.