Telerik Forums
Community Forums Forum
1 answer
190 views
What is the benefit of moving to Kendo from say asp.net ajax (non-mvc).  It seems the Ajax controls now have HTML5 charting elements and the other existing ajax controls provide "touch enabled"  capabilities for mobile devices with the .js resource files.  So what then is the benefit other than SOE and lighter weight controls as two big reasons (neither of which a big concern to my product)?

Any glaring and big reasons one would make the switch?

The only anwser I've found was from this thread and not sure if that's pretty much it and it truly stands still:
http://www.telerik.com/community/forums/aspnet-ajax/general-discussions/asp-net-ajax-versus-kendoui-clarification.aspx

"This basically should be an architecture decision based on the target users of your application and the goals of it. If the idea for everything working on the client fits your needs, you can try Kendo. If you still prefer the server-side approach, you should continue with ASP.NET AJAX components. "
Vasil
Telerik team
 answered on 03 May 2013
8 answers
379 views
It is our pleasure to announce the immediate availability of RadControls for ASP.NET AJAX Q1 2008.

Check out the list of What's New as well as the full Release Notes 

Happy Coding!
Telerik Team.
Apo
Telerik team
 answered on 24 Apr 2013
1 answer
109 views

I use JustTest extensively and there are a few things that could make it that little bit better. Here are my suggestions:

  1. Introduction of an "auto" mode, similar to the NUnit GUI test runner. This would detect a change in one of the assemblies under test and re-run the last test run. Even better would be an auto mode similar to NCrunch where the tests are executed when the code changes without the need to manually rebuild.
  2. In addition to "Repeat Last Test Run", an option to re-run only the failed tests from the last test run would be good.
  3. It would also be good if you had the option to remember the filter. At the moment I can click on the red X to show only failing tests but if I re-run the tests I have to filter again. This is annoying when running tests using the keyboard shortcuts and having to click the button (which I have on a different screen to the actual code).
  4. Similarly, it would be good if it was possible to remember the state of the tree when test results are grouped, instead of it expanding every time you run the tests.
  5. Is it possible to have a button to clear the cached list of tests? This would stop the problem of tests that no longer exist still appearing in the list until you delete the mefcache folder.

 

Zdravko
Telerik team
 answered on 23 Apr 2013
5 answers
282 views
Hi We are using sitefinity 3.7 for two of our applications, found a serious bug when open the site on IE 10, when we go to https://www.medicalhomebuilder.org/sitefinity ( https://www.medicalhomebuilder.org is our domain name) and enter username and pwd, we got a server error:  Invalid value for 'encryptedTicket' parameter, it happens on our other site as well.

We can't find the forum for sitefinity on your site now.
Can you tell us how to fix it or tell us where should I post this question.
Thanks,
Stefani Tacheva
Telerik team
 answered on 19 Apr 2013
1 answer
115 views
hi,

i am using a rad combo box and loading data with on load demand feature. everything is working fine but the problem is when i focus on rad combo box  on page load and when i click on down arrow from keyboard data is not loading and list is showing empty but data is filtering when i enter some text. requesting to provide the solution. if explanation is not clear i will explain in detail
Plamen
Telerik team
 answered on 19 Apr 2013
0 answers
149 views
Hi,

is there any idea to build a office integration with telerik tools like "http://www.add-in-express.com/" do?

I'm looking how to add a custom context-menu item in the inbox?!

Thanks best Regards
Rene
ITA
Top achievements
Rank 1
 asked on 08 Apr 2013
0 answers
229 views
I have problem with my development task.
My ASPX File
<telerik:RadGrid ID="grd1" runat="server" AllowFilteringByColumn="True"
              AllowPaging="True" AllowCustomPaging="true" AutoGenerateColumns="False" GridLines="None"
              OnItemDataBound="grd1_OnItemDataBound" OnItemCreated="grd1_ItemCreated"
              Width="100%" Skin="Windows7" ShowGroupPanel="false" CellSpacing="0" PageSize="50"
              OnNeedDataSource="grd1_NeedDataSource" OnPageIndexChanged="grd1_PageIndexChanged"
              OnPageSizeChanged="grd1_PageSizeChanged">

and my Code file is
protected void grd1_NeedDataSource(object sender, GridNeedDataSourceEventArgs e)
{
        grd1.VirtualItemCount = 100000;
        grd1.DataSource = GetDataSource();
        grd1.DataBind();
}
 
private IEnumerable<SearchClass> Select(int pageSize, int pageIndex)
    {
 
      IQueryable<SearchClass> searchObj = DataClassLib.Search(pageSize, pageIndex).AsQueryable();
 
      try
      {
        searchObj = searchObj .Select(x => new SearchClass
        {
          Id = x.Id,
          Name = x.Name,
        });
        
      }
      catch (Exception ex)
      {
        throw ex;
      }
 
      return searchObj;
    }
 
 private IEnumerable<SearchClass> GetDataSource()
    {
      int pageIndex = grd1.CurrentPageIndex;
      int pageSize = grd1.PageSize;
 
      if (pageIndex == 0)
        pageIndex = 1;
      IEnumerable<SearchClass> data = Select(pageSize,pageIndex);
      return data == null ? new List<SearchClass>() : data.Skip(pageSize * pageIndex).Take(pageSize);
    }


i used Telerik RadGrid and i need to show pagination using Stored Procedure  where procedure returns only 50 records from database though there are 100K records in table.

Paging showing correctly.
using this code i get 50 records from database but does not appear in  grid , i debug my code and its shows me  in GetDataSource() that returns 50 records but when debug point comes to grd1.DataSource = GetDataSource(); this line in datasource it show me 0 count.

can anybody guess why this happening

Thanks
Kiresh
Top achievements
Rank 1
 asked on 05 Apr 2013
0 answers
145 views
Hi Iam implementing telerik grid in my asp.net MVC4 application. I have implemented the grid where select and delete functionality in working fine. But when i click on submit button update function in not triggering. Can anybody please tell me where i gone wrong? Please refer the code for telerik grid view given below.

@(Html.Telerik().Grid<CustomerProductPriceModel>()
            .Name("Grid")
            .DataKeys(x =>
                        {
                            x.Add(y => y.Customer_Id);
                        })
                         .DataBinding(dataBinding =>
                        {
                                dataBinding.Ajax()
                                .Select("CustomerProductPriceList", "controller", new { productVariantId = Model.Id })
                                .Update("CustomerPriceUpdate", "controller", new { productVariantId = Model.Id })
                                 .Delete("CustomerPriceUpdate", "controller", new { productVariantId = Model.Id });
                        })
            .Columns(columns =>
            {
                columns.Bound(y => y.Customer_name).Width(200).ReadOnly();
                columns.Bound(y => y.Price).Width(100);

                columns.Command(commands =>
                {
                    commands.Edit().Text(T("Admin.Common.Edit").Text);
                    commands.Delete().Text(T("Admin.Common.Delete").Text);
                }).Width(180);

            })
            .Editable(x =>
                    {
                        x.Mode(GridEditMode.InLine);
                    })
            .EnableCustomBinding(true)

          )
Sandeep
Top achievements
Rank 1
 asked on 05 Apr 2013
0 answers
196 views
Iam working on nopcommerce2.8 version. I have a problem with telerik plugin implementation to create new grid.
Iam implementing a concept where for a product i want to give different price for different customer. So to assign new price for different customers, in admin panel i am creating a grid in edit productvariant page using telerik. I have created a new tab to display these details. Iam able to display customer name and price in grid, but i am not able to call update function, when i click on update button after editing a row. I have created new model to save the customer and price details. Please help me to solve this update problem.
 
The model, view and controller of my nopcommerce in given below.
 
Thanks.
 

//Model
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Web.Mvc;
using FluentValidation.Attributes;
using Nop.Admin.Models.Customers;
using Nop.Admin.Validators.Catalog;
using Nop.Web.Framework;
using Nop.Web.Framework.Localization;
using Nop.Web.Framework.Mvc;
using Telerik.Web.Mvc;

namespace Nop.Admin.Models.Catalog
{
public partial class CustomerProductPriceModel : BaseNopModel
{
public int Customer_Id { get; set; }
[NopResourceDisplayName("Customer Name")]
public string Customer_name { get; set; }

[NopResourceDisplayName("Price")]
public decimal Price { get; set; }

[NopResourceDisplayName("Unit")]
public string Units { get; set; }

}
}

// view

@(Html.Telerik().Grid
Sandeep
Top achievements
Rank 1
 asked on 04 Apr 2013
1 answer
132 views
Hi,
I have a requirement of chart has to be zoom in/zoom out as well as panning only with mouse controls not using ZoomPanBar.
Give me the exact solution for RadCartesianChart in Telerik.


Many Thanks.
Evgenia
Telerik team
 answered on 29 Mar 2013
Narrow your results
Selected tags
Tags
+? more
Top users last month
Shiori
Top achievements
Rank 2
Iron
Tien
Top achievements
Rank 1
Iron
Robert
Top achievements
Rank 1
Rob
Top achievements
Rank 4
Bronze
Bronze
Iron
Geoff
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Shiori
Top achievements
Rank 2
Iron
Tien
Top achievements
Rank 1
Iron
Robert
Top achievements
Rank 1
Rob
Top achievements
Rank 4
Bronze
Bronze
Iron
Geoff
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?