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

Hello,
I am trying to create a spreadsheet where users can input data to a formatted sheet. The changes are written to database and then the spreadsheet values are changed according to data inputted. But writing data with Javascript triggers the event again. Locking the OnClientChange method is one way I accomplished this, but rapid changes don't get recognized and are ignored. Is there a better way of fixing this issue?
Thanks for any help in advance :D
How do I stop values from changing when dragging cells. In the provided example, the values iterate trough day abbreviations (the days are in Lithuanian language. Translations of the day abbreviations would be: friday, saturday, sunday, monday, tuesday). What is weird is that I can't replicate it in English or Russian.
Thanks for any help provided! :D