Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
221 views

I'm tasked with upgrading our Telerik suite to the latest Progress Telerik UI for ASP.NET AJAX (I downloaded Telerik_UI_for_ASP.NET_AJAX_2022_2_622) from a version a decade ago (2013.3.1114.45 - Telerik.Web.Design; 2011.2.712.35 - Telerik.Web.UI; 2012.3.1205.35 - Telerik.Web.UI.Skins).  The website uses web form and a lot of grids, radtreeview, radwindows and tabs.  I'd like deployment to be as easy as possible so not to have to install anything but rather deploy as part of the bin folder.

Please give me any guidance for this.  I'd really appreciate it.  Is there a nuget package that I can simply install?

Thank you very much!

Best regards

Valentin Dragnev
Telerik team
 answered on 15 Aug 2022
1 answer
68 views

Hello,

Is there a sample C# document I can follow to understand the capabilities of Telerik's RadPdfProcessing library.

I have been using another solution that took HMTL like syntax and generated PDFs.  Being familiar with HTML it was fairly easy to manage.

I would like to explore Telerik but don't know how to get a baseline understanding.

PS: I did the Hello World example :-)

Thanks

Svilen
Telerik team
 answered on 08 Apr 2022
1 answer
54 views

All the links on the release history page link to an "oops..." (Error 404) page:
https://www.telerik.com/support/whats-new/aspnet-ajax/release-history

 

Rumen
Telerik team
 answered on 15 Mar 2022
1 answer
50 views

Hi,

I'm having this issue when I open Table Wizard-> More Table Styling

I tried to modify the css in the skin that I'm using but I have no success.

 

Rumen
Telerik team
 answered on 04 Mar 2021
1 answer
173 views

Hello,

The company I work for is using Telerik UI 2012.1.411.40

I have been tasked with building a new page on one of our products, but I cannot seem to find documentation in our downloads.

I understand the version is old, I assume that upgrading from 2012 to 2021 would cause a number of issues to come up.

I was wondering if support could provide the documentation for this older version or the closest I could follow to it?

I would also like the opportunity to speak with someone, if possible, about possibly using a different version within the application for a specific section.

I look forward to hearing from anyone really.

 

Doncho
Telerik team
 answered on 02 Mar 2021
1 answer
472 views

I'm new at my company, but a 50-year old seasoned C# Windows Forms developer.

 

I have been assigned to create an ASP.NET MVC Report for a web page using MVC 4.

 

Say I have a school database. I can pull a list of student in the C# code easily using SqlCommand and manipulate it in any way ...in the C# code. All of the examples show how to do this in javascript - which I am an idiot with. My new company is paying me to develop, not to spend days trying to figure out javascript.

 

On the MVC Report, they want 4 tabs:

1) All Students (Default View),

2) Elementary School Students (grades 1 - 5),

3) Middle School Students (grades 6 - 8), and

4) High School Students (grades 9 - 12).

 

Each tab will display similar information. There will be 4 pie charts at the top with a grid of all the data at the bottom. For the pie charts:

1) Top 10 Most Taken Classes,

2) Top 10 GPA Students,

3) Top 10 Students with Days Missed, and

4) Top 10 Classes with Highest Grades.

 

Once the data is collected one time, it would be simple to show this data in different tabs using a Windows Forms application.

 

How would I do this in ASP.NET MVC where all of the code examples show everything done from the RAZR @Html.Kendo() prompt?

 

Is there a way to use my C# skills for this, or does Kendo only work from javascript?

 

```` c#

        private readonly String _CONNECTIONSTRING = ConfigurationManager.ConnectionStrings["DBConnection"].ConnectionString;
        private readonly String _GETSTUDENTINFO = "SELECT STUDENTID, FIRSTNAME, LASTNAME, GRADELEVEL, CLASSNAME, CLASSGPA, ABSENTCOUNT FROM JOHNSONISD.STUDENTTABLE;";

        private List<Student> studentList;

        public void Test() {
            studentList = GetStudents();
            var elementaryStudents = studentList.Where(x => x.GradeLevel < 6);
            var middleSchoolStudents = studentList.Where(x => 5 < x.GradeLevel && x.GradeLevel < 9);
            var highSchoolStudents = studentList.Where(x => 8 < x.GradeLevel);
        }

        private List<Student> GetStudents() {
            var result = new List<Student>();
            var table = new DataTable();
            using (var da = new SqlDataAdapter(_GETSTUDENTINFO, new SqlConnection(_CONNECTIONSTRING))) {
                da.Fill(table);
            }
            foreach (DataRow row in table.Rows) {
                var studentId = String.Format("{0}", row["STUDENTID"]);
                var firstName = String.Format("{0}", row["FIRSTNAME"]);
                var lastName = String.Format("{0}", row["LASTNAME"]);
                var strLevel = String.Format("{0}", row["GRADELEVEL"]);
                int gradeLevel;
                int.TryParse(strLevel, out gradeLevel);
                var className = String.Format("{0}", row["CLASSNAME"]);
                var strGpa = String.Format("{0}", row["CLASSGPA"]);
                double classGpa;
                double.TryParse(strGpa, out classGpa);
                var strabsent = String.Format("{0}", row["ABSENTCOUNT"]);
                int absentCount;
                int.TryParse(strabsent, out absentCount);
                var student = new Student() {
                    StudentId = studentId,
                    FirstName = firstName,
                    LastName = lastName,
                    GradeLevel = gradeLevel,
                    ClassName = className,
                    ClassGpa = classGpa,
                    AbsentCount = absentCount,
                };
                result.Add(student);
            }
            return result;
        }

        public class Student {
            public String StudentId { get; set; }
            public String FirstName { get; set; }
            public String LastName { get; set; }
            public int GradeLevel { get; set; }
            public String ClassName { get; set; }
            public double ClassGpa { get; set; }
            public int AbsentCount { get; set; }
        }
````

Ivan Danchev
Telerik team
 answered on 26 Jan 2021
18 answers
2.1K+ views

We are using Telerik UI for ASP.NET AJAX in our .Net Application.

Can someone tell me what is the latest version of jQuery being used in the latest version(Jan 2019) of Telerik UI for ASP.NET AJAX?

Rumen
Telerik team
 answered on 20 Jan 2021
3 answers
754 views

hi,
i want to display next,Previous and finish button in all radwizard steps .in step 0 (first step) previous button disabled and in last step next button disabled and finish button must be enabled. Is this possible in rad WIzard UI

  <telerik:RadWizard RenderMode="Lightweight"
                    runat="server"
                    ID="ManualOrderWizard"
                  
                    DisplayProgressBar="False"
                    DisplayCancelButton="True"
                    DisplayNavigationBar="False"
                    Skin="Office2007"
                    OnNextButtonClick="ManualOrderWizard_NextButtonClick"
                    Localization-Finish="Create Order" Localization-Cancel="Close" OnCancelButtonClick="ManualOrderWizard_CancelButtonClick">
                    <%-- OnCancelButtonClick="">--%>
                     
                    <WizardSteps>
                        <telerik:RadWizardStep ID="AddMembership" StepType="Step" runat="server">
                            <uc:UCAddMembership runat="server" ID="UCAddMembership" />
                        </telerik:RadWizardStep>
                        <telerik:RadWizardStep ID="AddItems" StepType="Step" runat="server">
                            <uc:UCAddItems runat="server" ID="AddItem" />
                        </telerik:RadWizardStep>
                        <telerik:RadWizardStep ID="CustomerShipping" StepType="Step" runat="server">
                            <%--<uc:UCAddMembership runat="server" ID="UCAddMembership2" />--%>
                        </telerik:RadWizardStep>
                        <telerik:RadWizardStep ID="GiftMessages" StepType="Step" runat="server">
                           <%-- <uc:UCAddMembership runat="server" ID="UCAddMembership3" />--%>
                        </telerik:RadWizardStep>
                        <telerik:RadWizardStep ID="AddbilltoCustomer" StepType="Step" runat="server">
                            <%--<uc:UCAddMembership runat="server" ID="UCAddMembership4" />--%>
                        </telerik:RadWizardStep>
                        <telerik:RadWizardStep ID="ReviewOrderTotal" StepType="Step" runat="server">
                            <%--<uc:UCAddMembership runat="server" ID="UCAddMembership5" />--%>
                        </telerik:RadWizardStep>
                        <telerik:RadWizardStep ID="OrderPayments" StepType="Step" runat="server">
                           <%-- <uc:UCAddMembership runat="server" ID="UCAddMembership6" />--%>
                        </telerik:RadWizardStep>
                        <telerik:RadWizardStep ID="AddNotes" StepType="Step" runat="server">
                           <%-- <uc:UCAddMembership runat="server" ID="UCAddMembership7" />--%>
                        </telerik:RadWizardStep>
                        <telerik:RadWizardStep ID="ReviewOrder" StepType="Finish" runat="server">
                            <%--uc:UCAddMembership runat="server" ID="UCAddMembership8" />--%>
                        </telerik:RadWizardStep>
                    </WizardSteps>

                </telerik:RadWizard>

Peter Milchev
Telerik team
 answered on 16 Dec 2020
5 answers
151 views

Hi, is it possible to have an offline version of the whole (new) documentation for ASP.NET AJAX?

In CHM or similar format?

Thanks, Tom

Vessy
Telerik team
 answered on 23 Apr 2020
Narrow your results
Selected tags
Tags
+? more
Top users last month
horváth
Top achievements
Rank 2
Iron
Iron
Steve
Top achievements
Rank 2
Iron
Erkki
Top achievements
Rank 1
Iron
Mark
Top achievements
Rank 2
Iron
Iron
Veteran
Jakub
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
horváth
Top achievements
Rank 2
Iron
Iron
Steve
Top achievements
Rank 2
Iron
Erkki
Top achievements
Rank 1
Iron
Mark
Top achievements
Rank 2
Iron
Iron
Veteran
Jakub
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?