I have a ASP-Button that is supposed to do two things when clicked:
1. Call onClientClick to save radgrid content (batcheditmode) clientside, because radgrid doesnt provide serverside methode :-(
2. Fire Click (postback) to save other content
Approach 1:
btnOk.OnClientClick="SaveChangesToGrid();";
btnOk.Click += new EventHandler(btnOk_Click);
- Click is fired
- javascript function "SaveChangesToGrid();" is called, but the grid doesnt save.
Approach 2:
btnOk.OnClientClick="SaveChangesToGrid();return false;";
btnOk.Click += new EventHandler(btnOk_Click);
- Click is not !! fired
- javascript function "SaveChangesToGrid();" is called and saves then grid.
Using the built-in save buttun works.
Is there any possiblity to save a RadGrid AND other page-content with only clicking one button ??
I have searched this forum for more than a day, but nothing works for me.
Thanks for any help
onClientItemClicked / onClientItemClicking prevents that itemClick is fired.

I'm working on replacing a standard asp.net menu with RadMenu. I used this to come up with something I think I can live with on the desktop and mobile:
https://docs.telerik.com/devtools/aspnet-ajax/controls/menu/how-to/auto-height-of-mobile-radmenu-items-group-popup?_ga=2.68372561.1121007008.1609881912-1221423875.1609164691
The auto height fixes the scroll bar issue, but in mobile render, the expand icon is so far over it is off the background for the pop-up. They are very light in color and once they are off the pop-up background, really hard to see.
See attached image.
If I could get this fixed, I think I could live with this setup. Thanks.
And for the record, searching the documentation for this subject doesn't turn up much.

Hi
I'm using RadScriptManager to bundle external scripts like jquery.
There are other components in my project that use assembly resources to add scripts like jQuery.Ui.
the problem is that ScriptResource.axd is added to the page before Telerik.WebResource.axd so jquery is not added and it does not work.
is there any way to change this ordering and force telerik webresource for radscriptmanager to be added first.
best regards.

i would like to know how do i set the NumberFormat in code behind on runtime as my control are created dynamically during Page_Init event.

Hi,
Hi,
How we can hide the version of Telerik currently installed from the HTML source?
We don't want to show this information at client side to prevent the hackers can use vunerabilities known in the version we used/installed in our applications.
If we check the HTML source, we see the following:
- <!-- 2018.2.710.45 -->
- Telerik.Web.UI%2c+Version%3d2018.2.710.45 in Telerik.Web.UI.WebResource.axd

| public static IEnumerable ExpandRecurrence(string recurrenceRule, DateTime rangeStart, DateTime rangeEnd) |
| { |
| List<OccurrenceInfo> occurrences = new List<OccurrenceInfo>(); |
| RecurrenceRule rrule; |
| if (RecurrenceRule.TryParse(recurrenceRule, out rrule)) |
| { |
| rrule.SetEffectiveRange(rangeStart, rangeEnd); |
| foreach (DateTime occStart in rrule.Occurrences) |
| { |
| OccurrenceInfo info = new OccurrenceInfo(occStart, occStart.Add(rrule.Range.EventDuration)); |
| occurrences.Add(info); |
| } |
| } |
| return occurrences; |
| } |
| public class OccurrenceInfo |
| { |
| private DateTime start; |
| private DateTime end; |
| public OccurrenceInfo(DateTime start, DateTime end) |
| { |
| this.start = start; |
| this.end = end; |
| } |
| public DateTime Start |
| { |
| get { return start; } |
| set { start = value; } |
| } |
| public DateTime End |
| { |
| get { return end; } |
| set { end = value; } |
| } |
| } |
| RecurrenceRule.TryParse("DTSTART:2008422T000000Z\nDTEND:2008423T000000Z\nRRULE:FREQ=YEARLY;INTERVAL=1;BYMONTHDAY=22;BYDAY=MO,TU,WE,TH,FR,SA,SU;BYMONTH=04\n", out rrule) |
After installing Visual Studio 2019 and Reporting Services, then installing UI ASP.NET 2020_3_1021, visual studio crashes with a "Not Responding" when opening any reporting solution/project. Is there a conflict with versions?
Thank you,
Jim
Hi,
We have a solution that users can use either with a Windows solution or with a Web browser.
With your great support, we were able to add PushButtonField to a PDF file with Windows Forms solution.
Is this possible also with Ajax version? To get a mouse location, zoom and information if document is rotated. I'm really bad with Javascript.
Thanks in advance for your great support!
Br. Mikko
